This commit is contained in:
schoetbi 2018-02-23 10:31:23 +00:00 committed by GitHub
commit f461464538
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -23048,8 +23048,8 @@ namespace exprtk
set_error(
make_error(parser_error::e_syntax,
current_token(),
"ERR108 - Index of " + details::to_str(index) + " out of range for "
"vector '" + symbol + "' of size " + details::to_str(vec_size),
"ERR108 - Index of " + std::to_str(index) + " out of range for "
"vector '" + symbol + "' of size " + std::to_str(vec_size),
exprtk_error_location));
free_node(node_allocator_,index_expr);