]> granicus.if.org Git - clang/commitdiff
Missed a couple.
authorJohn McCall <rjmccall@apple.com>
Thu, 26 Aug 2010 10:20:09 +0000 (10:20 +0000)
committerJohn McCall <rjmccall@apple.com>
Thu, 26 Aug 2010 10:20:09 +0000 (10:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112179 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/DeclBase.h

index e5bdd9ee489eb140ff290fbf2efd061f4d2c25d7..d973a1d108164ec0390027d38794bc15a4a24853 100644 (file)
@@ -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