Add pow to arith_opr_to_string

This commit is contained in:
Gal Katzir 2023-08-28 21:52:16 +03:00
parent f46bffcd69
commit 797eab4e86
1 changed files with 1 additions and 0 deletions

View File

@ -21501,6 +21501,7 @@ namespace exprtk
case details::e_mul : return "*";
case details::e_div : return "/";
case details::e_mod : return "%";
case details::e_pow : return "^";
default : return "" ;
}
}