Skip to content

Commit 6fb1a81

Browse files
committed
Bug hunting; more debug output
1 parent b18dc0f commit 6fb1a81

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/exprengine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ namespace {
268268
if (tok->index() == 0)
269269
return;
270270
const std::string &symbolicExpression = value->getSymbolicExpression();
271-
if (symbolicExpression[0] != '$')
271+
if (std::isdigit(symbolicExpression[0]) || value->type == ExprEngine::ValueType::BinOpResult)
272272
return;
273273
if (mSymbols.find(symbolicExpression) != mSymbols.end())
274274
return;

0 commit comments

Comments
 (0)