diff options
Diffstat (limited to 'clang/include/clang/Parse/Parser.h')
-rw-r--r-- | clang/include/clang/Parse/Parser.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/include/clang/Parse/Parser.h b/clang/include/clang/Parse/Parser.h index e452ecff131..93fc611bdbd 100644 --- a/clang/include/clang/Parse/Parser.h +++ b/clang/include/clang/Parse/Parser.h @@ -235,6 +235,9 @@ public: const Token &getCurToken() const { return Tok; } Scope *getCurScope() const { return Actions.getCurScope(); } + void incrementMSLocalManglingNumber() const { + return Actions.incrementMSLocalManglingNumber(); + } Decl *getObjCDeclContext() const { return Actions.getObjCDeclContext(); } @@ -745,7 +748,7 @@ public: Self->EnterScope(ScopeFlags); else { if (BeforeCompoundStmt) - Self->getCurScope()->incrementMSLocalManglingNumber(); + Self->incrementMSLocalManglingNumber(); this->Self = 0; } |