summaryrefslogtreecommitdiffstats
path: root/clang
diff options
context:
space:
mode:
Diffstat (limited to 'clang')
-rw-r--r--clang/include/clang/AST/DeclBase.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/include/clang/AST/DeclBase.h b/clang/include/clang/AST/DeclBase.h
index e5bdd9ee489..d973a1d1081 100644
--- a/clang/include/clang/AST/DeclBase.h
+++ b/clang/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
OpenPOWER on IntegriCloud