commit | fe85cedd58df7daed29201703cfb8806e12876d0 | [log] [tgz] |
---|---|---|
author | Douglas Gregor <dgregor@apple.com> | Thu Aug 06 03:17:00 2009 +0000 |
committer | Douglas Gregor <dgregor@apple.com> | Thu Aug 06 03:17:00 2009 +0000 |
tree | 3839a33ad270a9f4ed978e24e87a93d3ad409fdd | |
parent | 4403a5e1f956fa86d515492dbe7c7a2817d8780d [diff] |
Support nested-name-specifiers for C++ member access expressions, e.g., this->Base::foo from James Porter! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@78278 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Frontend/PrintParserCallbacks.cpp b/lib/Frontend/PrintParserCallbacks.cpp index 4231d66..43a5b6f 100644 --- a/lib/Frontend/PrintParserCallbacks.cpp +++ b/lib/Frontend/PrintParserCallbacks.cpp
@@ -532,7 +532,8 @@ tok::TokenKind OpKind, SourceLocation MemberLoc, IdentifierInfo &Member, - DeclPtrTy ImplDecl) { + DeclPtrTy ImplDecl, + const CXXScopeSpec *SS=0) { Out << __FUNCTION__ << "\n"; return ExprEmpty(); }