[exprtk] Decrease loop runtime check upper-bound (#4872)

This commit is contained in:
Arash Partow 2020-12-19 14:29:35 +11:00 committed by GitHub
parent d8546a88b3
commit 6a079d6946
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ void run(const std::string& expression_string)
loop_runtime_check_t loop_runtime_check;
loop_runtime_check.loop_set = loop_runtime_check_t::e_all_loops;
loop_runtime_check.max_loop_iterations = 100000000;
loop_runtime_check.max_loop_iterations = 1000000;
parser_t parser;