C++ Mathematical Expression Library (ExprTk) http://www.partow.net/programming/exprtk/index.html

This commit is contained in:
Arash Partow
2015-04-16 17:19:29 +10:00
parent 4dd2a8a7cc
commit e1a160efcc
2 changed files with 23 additions and 19 deletions

View File

@ -23810,7 +23810,10 @@ namespace exprtk
default : return;
}
parser_->dec_.add_assignment(symbol_name,cst);
if (!symbol_name.empty())
{
parser_->dec_.add_assignment(symbol_name,cst);
}
}
inline expression_node_ptr synthesize_assignment_expression(const details::operator_type& operation, expression_node_ptr (&branch)[2])