diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-11-17 23:12:20 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-11-17 23:12:20 +0000 |
commit | c09cba67d0ad01e53e0fed07322e95dd281bcfd9 (patch) | |
tree | 9410b477f0582359c707acb5080363990f6adf02 /lib/Frontend/PrintParserCallbacks.cpp | |
parent | 64989f04d13d9a4a62cc7ebee6351b7c4dbe2e74 (diff) |
Pass source locations of identifiers referenced by @class through Action::ActOnForwardClassDeclaration().
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89162 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PrintParserCallbacks.cpp')
-rw-r--r-- | lib/Frontend/PrintParserCallbacks.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Frontend/PrintParserCallbacks.cpp b/lib/Frontend/PrintParserCallbacks.cpp index 25b40c7818..deb5498b90 100644 --- a/lib/Frontend/PrintParserCallbacks.cpp +++ b/lib/Frontend/PrintParserCallbacks.cpp @@ -79,10 +79,11 @@ namespace { /// Scope will always be top level file scope. Action::DeclPtrTy ActOnForwardClassDeclaration(SourceLocation AtClassLoc, IdentifierInfo **IdentList, + SourceLocation *IdentLocs, unsigned NumElts) { Out << __FUNCTION__ << "\n"; return MinimalAction::ActOnForwardClassDeclaration(AtClassLoc, IdentList, - NumElts); + IdentLocs, NumElts); } // Pure Printing |