diff options
author | John McCall <rjmccall@apple.com> | 2010-08-26 10:20:09 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-08-26 10:20:09 +0000 |
commit | f29815affe5d28c499d21c0be9bb078c52025ae6 (patch) | |
tree | 0f0b36e3f2adcfae2f8fb0a4f5927dc554e2e46a | |
parent | 6d9496d2d22817aeb286dd7007923e14f10fa8a6 (diff) |
Missed a couple.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112179 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/DeclBase.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/AST/DeclBase.h b/include/clang/AST/DeclBase.h index e5bdd9ee48..d973a1d108 100644 --- a/include/clang/AST/DeclBase.h +++ b/include/clang/AST/DeclBase.h @@ -650,7 +650,7 @@ public: DeclContextLookupResult() : std::pair<NamedDecl**,NamedDecl**>() {} - using pair::operator=; + using std::pair<NamedDecl**,NamedDecl**>::operator=; }; class DeclContextLookupConstResult @@ -663,7 +663,7 @@ public: DeclContextLookupConstResult() : std::pair<NamedDecl*const*, NamedDecl*const*>() {} - using pair::operator=; + using std::pair<NamedDecl*const*,NamedDecl*const*>::operator=; }; /// DeclContext - This is used only as base class of specific decl types that |