mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 18:26:01 +02:00
Fix a typo in EvalBinary
Change-Id: Ib109e00962232f3146711ed9ec0218c91692acfa
This commit is contained in:
parent
69fb4ee9cd
commit
dcb726d00c
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ public class EvalBinary extends CPPDependentEvaluation {
|
||||||
ICPPFunctionType functionType = overload.getType();
|
ICPPFunctionType functionType = overload.getType();
|
||||||
IType[] parameterTypes = functionType.getParameterTypes();
|
IType[] parameterTypes = functionType.getParameterTypes();
|
||||||
arg1 = maybeApplyConversion(fArg1, parameterTypes[0], point);
|
arg1 = maybeApplyConversion(fArg1, parameterTypes[0], point);
|
||||||
arg2 = maybeApplyConversion(fArg1, parameterTypes[1], point);
|
arg2 = maybeApplyConversion(fArg2, parameterTypes[1], point);
|
||||||
|
|
||||||
if (!(overload instanceof CPPImplicitFunction)) {
|
if (!(overload instanceof CPPImplicitFunction)) {
|
||||||
if (!overload.isConstexpr())
|
if (!overload.isConstexpr())
|
||||||
|
|
Loading…
Add table
Reference in a new issue