diff options
Diffstat (limited to 'clang/lib/Sema/Sema.h')
| -rw-r--r-- | clang/lib/Sema/Sema.h | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/clang/lib/Sema/Sema.h b/clang/lib/Sema/Sema.h index 72fb0a82a02..7af80c0261e 100644 --- a/clang/lib/Sema/Sema.h +++ b/clang/lib/Sema/Sema.h @@ -86,6 +86,7 @@ namespace clang {    class ObjCMethodDecl;    class ObjCPropertyDecl;    class ObjCContainerDecl; +  class FunctionProtoType;    class BasePaths;    struct MemberLookupCriteria;    class CXXTemporary; @@ -394,6 +395,9 @@ public:    DeclarationName GetNameForDeclarator(Declarator &D);    bool CheckSpecifiedExceptionType(QualType T, const SourceRange &Range);    bool CheckDistantExceptionSpec(QualType T); +  bool CheckEquivalentExceptionSpec( +      const FunctionProtoType *Old, SourceLocation OldLoc, +      const FunctionProtoType *New, SourceLocation NewLoc);    QualType ObjCGetTypeForMethodDefinition(DeclPtrTy D); | 

