We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b18dc0f commit 6fb1a81Copy full SHA for 6fb1a81
1 file changed
lib/exprengine.cpp
@@ -268,7 +268,7 @@ namespace {
268
if (tok->index() == 0)
269
return;
270
const std::string &symbolicExpression = value->getSymbolicExpression();
271
- if (symbolicExpression[0] != '$')
+ if (std::isdigit(symbolicExpression[0]) || value->type == ExprEngine::ValueType::BinOpResult)
272
273
if (mSymbols.find(symbolicExpression) != mSymbols.end())
274
0 commit comments