Add pow to arith_opr_to_string

This commit is contained in:
Gal Katzir 2023-08-28 21:58:27 +03:00
parent 797eab4e86
commit 6fc3a6d09a
1 changed files with 1 additions and 1 deletions

View File

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