summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/Sema.h
diff options
context:
space:
mode:
Diffstat (limited to 'clang/lib/Sema/Sema.h')
-rw-r--r--clang/lib/Sema/Sema.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/clang/lib/Sema/Sema.h b/clang/lib/Sema/Sema.h
index d14c5ffa200..68d2eeefc50 100644
--- a/clang/lib/Sema/Sema.h
+++ b/clang/lib/Sema/Sema.h
@@ -836,7 +836,13 @@ public:
virtual void ActOnFinishCXXClassDef(DeclTy *TagDecl);
- virtual DeclTy *ActOnConstructorDeclarator(CXXConstructorDecl *ConDecl);
+
+ bool CheckConstructorDeclarator(Declarator &D, QualType &R,
+ FunctionDecl::StorageClass& SC);
+ bool CheckDestructorDeclarator(Declarator &D, QualType &R,
+ FunctionDecl::StorageClass& SC);
+ DeclTy *ActOnConstructorDeclarator(CXXConstructorDecl *Constructor);
+ DeclTy *ActOnDestructorDeclarator(CXXDestructorDecl *Destructor);
//===--------------------------------------------------------------------===//
// C++ Derived Classes
OpenPOWER on IntegriCloud