r370340 - Removed two function declarations that don't have definitions
Dmitri Gribenko via cfe-commits
cfe-commits at lists.llvm.org
Thu Aug 29 05:10:15 PDT 2019
Author: gribozavr
Date: Thu Aug 29 05:10:15 2019
New Revision: 370340
URL: http://llvm.org/viewvc/llvm-project?rev=370340&view=rev
Log:
Removed two function declarations that don't have definitions
Modified:
cfe/trunk/include/clang/AST/DeclCXX.h
Modified: cfe/trunk/include/clang/AST/DeclCXX.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/DeclCXX.h?rev=370340&r1=370339&r2=370340&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/DeclCXX.h (original)
+++ cfe/trunk/include/clang/AST/DeclCXX.h Thu Aug 29 05:10:15 2019
@@ -3469,12 +3469,6 @@ public:
return IsVirtual;
}
- /// Get the constructor or constructor template in the derived class
- /// correspnding to this using shadow declaration, if it has been implicitly
- /// declared already.
- CXXConstructorDecl *getConstructor() const;
- void setConstructor(NamedDecl *Ctor);
-
static bool classof(const Decl *D) { return classofKind(D->getKind()); }
static bool classofKind(Kind K) { return K == ConstructorUsingShadow; }
};
More information about the cfe-commits
mailing list