summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaLookup.cpp
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2013-05-05 00:41:58 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2013-05-05 00:41:58 +0000
commit44ebbd54361c88071b2740ded92a13ad7dc5275f (patch)
tree6270237a8c04f9b838239b65c4e2e3b4d0cda682 /clang/lib/Sema/SemaLookup.cpp
parent3238fb759563e64b3fc1f28bb3e184de3d7b07a1 (diff)
downloadbcm5719-llvm-44ebbd54361c88071b2740ded92a13ad7dc5275f.tar.gz
bcm5719-llvm-44ebbd54361c88071b2740ded92a13ad7dc5275f.zip
Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constructor from None
Patch by Robert Wilhelm. llvm-svn: 181139
Diffstat (limited to 'clang/lib/Sema/SemaLookup.cpp')
-rw-r--r--clang/lib/Sema/SemaLookup.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaLookup.cpp b/clang/lib/Sema/SemaLookup.cpp
index 940f8f32fa5..9ab3b2d08ec 100644
--- a/clang/lib/Sema/SemaLookup.cpp
+++ b/clang/lib/Sema/SemaLookup.cpp
@@ -731,7 +731,7 @@ static bool LookupDirect(Sema &S, LookupResult &R, const DeclContext *DC) {
EPI.NumExceptions = 0;
QualType ExpectedType
= R.getSema().Context.getFunctionType(R.getLookupName().getCXXNameType(),
- ArrayRef<QualType>(), EPI);
+ None, EPI);
// Perform template argument deduction against the type that we would
// expect the function to have.
OpenPOWER on IntegriCloud