From 7b6342b8d79f895cc886e1a97a63ec0c977f1066 Mon Sep 17 00:00:00 2001 From: brad Arant Date: Mon, 20 Oct 2025 10:56:30 -0700 Subject: [PATCH] Fixed not a number issue with expression. --- Operand.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Operand.cpp b/Operand.cpp index 9b5c850..b8bc42e 100644 --- a/Operand.cpp +++ b/Operand.cpp @@ -23,6 +23,7 @@ namespace jet { Operand op(in, tag); string = op.string; doubleValue = op.doubleValue; + isNumber = op.isNumber; if(!in.ifNext(")")) throw coreutils::Exception("expected ) in expression."); } else if(in.ifNextIgnoreCase("SUBSTRING")) {