[PATCH] D140828: [C++] Implement "Deducing this" (P0847R7)
    Timm Bäder via Phabricator via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Fri Aug 11 01:24:01 PDT 2023
    
    
  
tbaeder added inline comments.
================
Comment at: clang/include/clang/AST/DeclCXX.h:2063-2064
   bool isInstance() const { return !isStatic(); }
+  bool isExplicitObjectMemberFunction() const;
+  bool isImplicitObjectMemberFunction() const;
+  const ParmVarDecl *getNonObjectParameter(unsigned I) const {
----------------
Can you add some documentation to these?
Repository:
  rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D140828/new/
https://reviews.llvm.org/D140828
    
    
More information about the llvm-commits
mailing list