[cfe-commits] r112179 - /cfe/trunk/include/clang/AST/DeclBase.h
John McCall
rjmccall at apple.com
Thu Aug 26 03:20:09 PDT 2010
Author: rjmccall
Date: Thu Aug 26 05:20:09 2010
New Revision: 112179
URL: http://llvm.org/viewvc/llvm-project?rev=112179&view=rev
Log:
Missed a couple.
Modified:
cfe/trunk/include/clang/AST/DeclBase.h
Modified: cfe/trunk/include/clang/AST/DeclBase.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/DeclBase.h?rev=112179&r1=112178&r2=112179&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/DeclBase.h (original)
+++ cfe/trunk/include/clang/AST/DeclBase.h Thu Aug 26 05:20:09 2010
@@ -650,7 +650,7 @@
DeclContextLookupResult()
: std::pair<NamedDecl**,NamedDecl**>() {}
- using pair::operator=;
+ using std::pair<NamedDecl**,NamedDecl**>::operator=;
};
class DeclContextLookupConstResult
@@ -663,7 +663,7 @@
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
More information about the cfe-commits
mailing list