aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDeLesley Hutchins <delesley@google.com>2012-04-06 15:10:17 +0000
committerDeLesley Hutchins <delesley@google.com>2012-04-06 15:10:17 +0000
commitcf2fa2f0c9d67adb98b282ec0eaa88f08df29804 (patch)
tree1bceca7c2b58a989bb6d6dafb7642895313423c7 /include
parent7a521806831b8724364ff714c959b354bbf5a438 (diff)
Fixed scoping error for late parsed attributes in nested classes.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@154173 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/clang/Sema/Sema.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h
index b639332a49..20b4a311cd 100644
--- a/include/clang/Sema/Sema.h
+++ b/include/clang/Sema/Sema.h
@@ -1378,7 +1378,7 @@ public:
/// Push the parameters of D, which must be a function, into scope.
void ActOnReenterFunctionContext(Scope* S, Decl* D);
- void ActOnExitFunctionContext() { PopDeclContext(); }
+ void ActOnExitFunctionContext();
DeclContext *getFunctionLevelDeclContext();