diff options
Diffstat (limited to 'clang/lib/Parse/ParseDecl.cpp')
| -rw-r--r-- | clang/lib/Parse/ParseDecl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Parse/ParseDecl.cpp b/clang/lib/Parse/ParseDecl.cpp index e7f4fc92ead..572ca613e01 100644 --- a/clang/lib/Parse/ParseDecl.cpp +++ b/clang/lib/Parse/ParseDecl.cpp @@ -1728,7 +1728,7 @@ void Parser::ParseFunctionDeclarator(SourceLocation LParenLoc, Declarator &D, // Enter function-declaration scope, limiting any declarators to the // function prototype scope, including parameter declarators. - EnterScope(Scope::FnScope|Scope::DeclScope); + ParseScope PrototypeScope(this, Scope::FnScope|Scope::DeclScope); bool IsVariadic = false; while (1) { @@ -1818,7 +1818,7 @@ void Parser::ParseFunctionDeclarator(SourceLocation LParenLoc, Declarator &D, } // Leave prototype scope. - ExitScope(); + PrototypeScope.Exit(); // If we have the closing ')', eat it. MatchRHSPunctuation(tok::r_paren, LParenLoc); |

