aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/clang/AST/DeclBase.h4
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