mirror of
https://github.com/ArashPartow/exprtk.git
synced 2025-08-07 03:37:30 +00:00
Fixed warning from msvc
Warning C4267 'argument': conversion from 'size_t' to 'int', possible loss of data
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user