diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/clang/Sema/Action.h | 2 | ||||
-rw-r--r-- | include/clang/Sema/Sema.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Sema/Action.h b/include/clang/Sema/Action.h index e7fb732c34..5fb6d1f00f 100644 --- a/include/clang/Sema/Action.h +++ b/include/clang/Sema/Action.h @@ -574,7 +574,7 @@ public: /// ActOnTranslationUnitScope - This callback is called once, immediately /// after creating the translation unit scope (in Parser::Initialize). - virtual void ActOnTranslationUnitScope(SourceLocation Loc, Scope *S) {} + virtual void ActOnTranslationUnitScope(Scope *S) {} /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with /// no declarator (e.g. "struct foo;") is parsed. diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h index ba1122e1ee..491a38668a 100644 --- a/include/clang/Sema/Sema.h +++ b/include/clang/Sema/Sema.h @@ -829,7 +829,7 @@ public: /// Scope actions. virtual void ActOnPopScope(SourceLocation Loc, Scope *S); - virtual void ActOnTranslationUnitScope(SourceLocation Loc, Scope *S); + virtual void ActOnTranslationUnitScope(Scope *S); /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with /// no declarator (e.g. "struct foo;") is parsed. |