diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-05-05 20:40:26 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-05-05 20:40:26 +0000 |
commit | 78852e91c8e46344600bac984c1f2b37d6af5060 (patch) | |
tree | 4675f5ad804fc2a9f7c4f27eda3d40dccab1c91f /clang/lib/Sema/Sema.cpp | |
parent | 593537a979609000cad49221f632d35c143327e5 (diff) | |
download | bcm5719-llvm-78852e91c8e46344600bac984c1f2b37d6af5060.tar.gz bcm5719-llvm-78852e91c8e46344600bac984c1f2b37d6af5060.zip |
Replace 'MultiExprArg()' with 'None'
llvm-svn: 181166
Diffstat (limited to 'clang/lib/Sema/Sema.cpp')
-rw-r--r-- | clang/lib/Sema/Sema.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/Sema.cpp b/clang/lib/Sema/Sema.cpp index 72864c5dd09..956204734db 100644 --- a/clang/lib/Sema/Sema.cpp +++ b/clang/lib/Sema/Sema.cpp @@ -1296,7 +1296,7 @@ bool Sema::tryToRecoverWithCall(ExprResult &E, const PartialDiagnostic &PD, // FIXME: Try this before emitting the fixit, and suppress diagnostics // while doing so. E = ActOnCallExpr(0, E.take(), ParenInsertionLoc, - MultiExprArg(), ParenInsertionLoc.getLocWithOffset(1)); + None, ParenInsertionLoc.getLocWithOffset(1)); return true; } |