Fix compiler warning -Wstring-plus-int

Similar to d44eaa97.
This commit is contained in:
Scott Kostyshak 2022-12-29 16:25:42 -05:00
parent d63c9f8016
commit 09e25ca5b7

View File

@ -92,7 +92,7 @@ void parse_math(Parser & p, ostream & os, unsigned flags, const mode_type mode)
} }
else { else {
warning_message("\nmode: " + mode); warning_message("\nmode: " + std::to_string(mode));
p.error("something strange in the parser\n"); p.error("something strange in the parser\n");
break; break;
} }