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

This commit is contained in:
Arash Partow 2016-06-02 08:57:54 +10:00
parent 5300e5485c
commit 767a633b39
1 changed files with 2 additions and 5 deletions

View File

@ -3816,7 +3816,7 @@ namespace exprtk
template <typename,typename> class Container>
inline bool token_is_then_assign(const token_t::token_type& ttype,
Container<std::string,Allocator>& token_list,
const bool advance_token = true)
const token_advance_mode mode = e_advance)
{
if (current_token_.type != ttype)
{
@ -3825,10 +3825,7 @@ namespace exprtk
token_list.push_back(current_token_.value);
if (advance_token)
{
next_token();
}
advance_token(mode);
return true;
}