aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaInit.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-04-16 17:16:43 +0000
committerDouglas Gregor <dgregor@apple.com>2010-04-16 17:16:43 +0000
commit871f439643b297dbb49396f6a3617875390978df (patch)
treedfd48bd67369a1aa51cdb45b22c5965724572c2c /lib/Sema/SemaInit.cpp
parent8ed4ff6d05ef41027ddaa13000309e719fa27ce8 (diff)
Eliminate the Elidable parameter to PerformImplicitConversion; we
don't need it. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101481 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaInit.cpp')
-rw-r--r--lib/Sema/SemaInit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaInit.cpp b/lib/Sema/SemaInit.cpp
index dae3d3ae7e..1293e8d6c5 100644
--- a/lib/Sema/SemaInit.cpp
+++ b/lib/Sema/SemaInit.cpp
@@ -3494,7 +3494,7 @@ InitializationSequence::Perform(Sema &S,
case SK_ConversionSequence:
if (S.PerformImplicitConversion(CurInitExpr, Step->Type, Sema::AA_Converting,
- false, false, *Step->ICS))
+ false, *Step->ICS))
return S.ExprError();
CurInit.release();