diff options
author | Steve Naroff <snaroff@apple.com> | 2007-10-10 17:45:44 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2007-10-10 17:45:44 +0000 |
commit | 640db42222c9f3f6716cf4d4cbcabb0538c7f4d7 (patch) | |
tree | e433645e6abd31671f0bdbc07262fd6e5c4b9606 /Driver/PrintParserCallbacks.cpp | |
parent | e440eb8158e71deb1e4ab11618ae3d680aac6da1 (diff) |
Fix a latent bug in MinimalActions (created by a recent name change).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42829 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Driver/PrintParserCallbacks.cpp')
-rw-r--r-- | Driver/PrintParserCallbacks.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Driver/PrintParserCallbacks.cpp b/Driver/PrintParserCallbacks.cpp index e3bfdf57f1..d7deb43f87 100644 --- a/Driver/PrintParserCallbacks.cpp +++ b/Driver/PrintParserCallbacks.cpp @@ -38,13 +38,13 @@ namespace { return MinimalAction::ActOnDeclarator(S, D, LastInGroup); } - /// PopScope - This callback is called immediately before the specified scope - /// is popped and deleted. - virtual void PopScope(SourceLocation Loc, Scope *S) { - std::cout << "PopScope\n"; + /// ActOnPopScope - This callback is called immediately before the specified + /// scope is popped and deleted. + virtual void ActOnPopScope(SourceLocation Loc, Scope *S) { + std::cout << "ActOnPopScope\n"; // Pass up to EmptyActions so that the symbol table is maintained right. - MinimalAction::PopScope(Loc, S); + MinimalAction::ActOnPopScope(Loc, S); } }; } |