diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-11-04 16:30:06 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-11-04 16:30:06 +0000 |
commit | 220f4277bd2a5817aadfc70c12cbdfd56d6bdcf8 (patch) | |
tree | 0ada03f8000bf7b81cba778e70ec23499fa88cb9 /clang/lib/Parse/MinimalAction.cpp | |
parent | 531045d55426a17321fe10fb952aa61cb0e6b560 (diff) | |
download | bcm5719-llvm-220f4277bd2a5817aadfc70c12cbdfd56d6bdcf8.tar.gz bcm5719-llvm-220f4277bd2a5817aadfc70c12cbdfd56d6bdcf8.zip |
Switch parsing of using declarations over to ParseUnqualifiedId.
llvm-svn: 86027
Diffstat (limited to 'clang/lib/Parse/MinimalAction.cpp')
-rw-r--r-- | clang/lib/Parse/MinimalAction.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/clang/lib/Parse/MinimalAction.cpp b/clang/lib/Parse/MinimalAction.cpp index 1e7d397fdf3..bf05b2baccd 100644 --- a/clang/lib/Parse/MinimalAction.cpp +++ b/clang/lib/Parse/MinimalAction.cpp @@ -42,14 +42,12 @@ Action::DeclPtrTy Action::ActOnUsingDirective(Scope *CurScope, return DeclPtrTy(); } -// Defined out-of-line here because of dependecy on AttributeList +// Defined out-of-line here because of dependency on AttributeList Action::DeclPtrTy Action::ActOnUsingDeclaration(Scope *CurScope, AccessSpecifier AS, SourceLocation UsingLoc, const CXXScopeSpec &SS, - SourceLocation IdentLoc, - IdentifierInfo *TargetName, - OverloadedOperatorKind Op, + UnqualifiedId &Name, AttributeList *AttrList, bool IsTypeName) { |