1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 10:16:03 +02:00

Fix a typo in EvalBinary

Change-Id: Ib109e00962232f3146711ed9ec0218c91692acfa
This commit is contained in:
Nathan Ridge 2016-07-28 20:50:39 -04:00
parent 69fb4ee9cd
commit dcb726d00c

View file

@ -145,7 +145,7 @@ public class EvalBinary extends CPPDependentEvaluation {
ICPPFunctionType functionType = overload.getType();
IType[] parameterTypes = functionType.getParameterTypes();
arg1 = maybeApplyConversion(fArg1, parameterTypes[0], point);
arg2 = maybeApplyConversion(fArg1, parameterTypes[1], point);
arg2 = maybeApplyConversion(fArg2, parameterTypes[1], point);
if (!(overload instanceof CPPImplicitFunction)) {
if (!overload.isConstexpr())