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

This commit is contained in:
Arash Partow 2015-04-20 01:44:06 +10:00
parent 2710614e95
commit b04aa28e59
1 changed files with 1 additions and 1 deletions

View File

@ -19545,7 +19545,7 @@ namespace exprtk
// Remove all subexpressions after first encountered return node. // Remove all subexpressions after first encountered return node.
for (std::size_t j = i + 1; j < (expression_list.size() - 1); ++j) for (std::size_t j = i + 1; j < expression_list.size(); ++j)
{ {
free_node(node_allocator_,expression_list[j]); free_node(node_allocator_,expression_list[j]);
} }