diff options
author | John McCall <rjmccall@apple.com> | 2012-08-24 20:38:34 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2012-08-24 20:38:34 +0000 |
commit | 42f48fbdf31a7e8c516ba5eed486ff53966459fc (patch) | |
tree | c62ca4acdb24ee23fd104223d8ce3521a88a244b /lib/Sema/SemaOverload.cpp | |
parent | a6e28f27c668775e3927b9c0be0a17636fed16fc (diff) |
Instantiate class template specializations during ADL.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162586 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaOverload.cpp')
-rw-r--r-- | lib/Sema/SemaOverload.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaOverload.cpp b/lib/Sema/SemaOverload.cpp index 5e31e41ec3..ea0f4b6937 100644 --- a/lib/Sema/SemaOverload.cpp +++ b/lib/Sema/SemaOverload.cpp @@ -9509,7 +9509,7 @@ DiagnoseTwoPhaseLookup(Sema &SemaRef, SourceLocation FnLoc, // declaring the function there instead. Sema::AssociatedNamespaceSet AssociatedNamespaces; Sema::AssociatedClassSet AssociatedClasses; - SemaRef.FindAssociatedClassesAndNamespaces(Args, + SemaRef.FindAssociatedClassesAndNamespaces(FnLoc, Args, AssociatedNamespaces, AssociatedClasses); // Never suggest declaring a function within namespace 'std'. |