Fixed not a number issue with expression.

This commit is contained in:
brad Arant 2025-10-20 10:56:30 -07:00
parent 94c8833f2a
commit 7b6342b8d7

View File

@ -23,6 +23,7 @@ namespace jet {
Operand op(in, tag); Operand op(in, tag);
string = op.string; string = op.string;
doubleValue = op.doubleValue; doubleValue = op.doubleValue;
isNumber = op.isNumber;
if(!in.ifNext(")")) if(!in.ifNext(")"))
throw coreutils::Exception("expected ) in expression."); throw coreutils::Exception("expected ) in expression.");
} else if(in.ifNextIgnoreCase("SUBSTRING")) { } else if(in.ifNextIgnoreCase("SUBSTRING")) {