diff options
Diffstat (limited to 'include/clang/Sema/Scope.h')
-rw-r--r-- | include/clang/Sema/Scope.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/include/clang/Sema/Scope.h b/include/clang/Sema/Scope.h index 1329f97c2b..855485d08e 100644 --- a/include/clang/Sema/Scope.h +++ b/include/clang/Sema/Scope.h @@ -84,18 +84,9 @@ public: /// TryScope - This is the scope of a C++ try statement. TryScope = 0x1000, - /// CatchScope - This is the scope of a C++ catch statement. - CatchScope = 0x2000, - /// FnTryCatchScope - This is the scope for a function-level C++ try or /// catch scope. - FnTryCatchScope = 0x4000, - - /// FnTryScope - This is the scope of a function-level C++ try scope. - FnTryScope = TryScope | FnTryCatchScope, - - /// FnCatchScope - This is the scope of a function-level C++ catch scope. - FnCatchScope = CatchScope | FnTryCatchScope + FnTryCatchScope = 0x2000 }; private: /// The parent scope for this scope. This is null for the translation-unit |