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

This commit is contained in:
Arash Partow
2013-04-02 21:57:57 +11:00
parent 3b6db5b323
commit e9c3e2e79d
2 changed files with 71 additions and 2 deletions

View File

@ -9093,7 +9093,8 @@ namespace exprtk
e_level10,
e_level11,
e_level12,
e_level13
e_level13,
e_level14
};
struct state_t;
@ -10476,7 +10477,7 @@ namespace exprtk
else if (token_t::e_add == current_token_.type)
{
next_token();
return expression_generator_(details::e_pos,parse_expression(e_level09));
return parse_expression(e_level13);
}
else if (token_t::e_eof == current_token_.type)
{