diff options
author | John McCall <rjmccall@apple.com> | 2009-11-21 09:38:42 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2009-11-21 09:38:42 +0000 |
commit | 4b1f16e6f80cb06985323750d044ed88d94496f4 (patch) | |
tree | 1ad52fbddbcaecfc36a18c0a2b665174b38aeb3f /clang/lib/Sema/Sema.h | |
parent | 88ad4c5d020b8e6cfd04ee1cec7b24ea2cafd59e (diff) | |
download | bcm5719-llvm-4b1f16e6f80cb06985323750d044ed88d94496f4.tar.gz bcm5719-llvm-4b1f16e6f80cb06985323750d044ed88d94496f4.zip |
Overload resolution doesn't decide whether to do ADL or not anymore; stopping
threading that state.
llvm-svn: 89557
Diffstat (limited to 'clang/lib/Sema/Sema.h')
-rw-r--r-- | clang/lib/Sema/Sema.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/Sema.h b/clang/lib/Sema/Sema.h index e26df119fa5..d3acc5f710a 100644 --- a/clang/lib/Sema/Sema.h +++ b/clang/lib/Sema/Sema.h @@ -961,7 +961,7 @@ public: void AddOverloadedCallCandidates(llvm::SmallVectorImpl<NamedDecl*>& Callees, DeclarationName &UnqualifiedName, - bool &ArgumentDependentLookup, + bool ArgumentDependentLookup, bool HasExplicitTemplateArgs, const TemplateArgumentLoc *ExplicitTemplateArgs, unsigned NumExplicitTemplateArgs, @@ -979,7 +979,7 @@ public: Expr **Args, unsigned NumArgs, SourceLocation *CommaLocs, SourceLocation RParenLoc, - bool &ArgumentDependentLookup); + bool ArgumentDependentLookup); OwningExprResult CreateOverloadedUnaryOp(SourceLocation OpLoc, unsigned Opc, |