diff options
author | Steve Naroff <snaroff@apple.com> | 2009-03-13 15:38:40 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2009-03-13 15:38:40 +0000 |
commit | 846b1ec40f829bdfc5047128a9131e66a1a6aaf7 (patch) | |
tree | d69ae62d2031b61504a148df158e305136f65985 /clang/lib/Sema/SemaDeclObjC.cpp | |
parent | ec94f08dcea55cc18e2c7d9692b555c7286b13c6 (diff) | |
download | bcm5719-llvm-846b1ec40f829bdfc5047128a9131e66a1a6aaf7.tar.gz bcm5719-llvm-846b1ec40f829bdfc5047128a9131e66a1a6aaf7.zip |
Remove ActiveScope (revert http://llvm.org/viewvc/llvm-project?view=rev&revision=65694 and http://llvm.org/viewvc/llvm-project?view=rev&revision=66741).
Will replace with something better today...
llvm-svn: 66893
Diffstat (limited to 'clang/lib/Sema/SemaDeclObjC.cpp')
-rw-r--r-- | clang/lib/Sema/SemaDeclObjC.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaDeclObjC.cpp b/clang/lib/Sema/SemaDeclObjC.cpp index 476b6afea57..6ca64e388ec 100644 --- a/clang/lib/Sema/SemaDeclObjC.cpp +++ b/clang/lib/Sema/SemaDeclObjC.cpp @@ -37,8 +37,6 @@ void Sema::ActOnStartOfObjCMethodDef(Scope *FnBodyScope, DeclTy *D) { // Allow all of Sema to see that we are entering a method definition. PushDeclContext(FnBodyScope, MDecl); - ActiveScope = FnBodyScope; - // Create Decl objects for each parameter, entrring them in the scope for // binding to their use. |