diff --git a/src/ox/std/strops.hpp b/src/ox/std/strops.hpp index 39213831d..d25346388 100644 --- a/src/ox/std/strops.hpp +++ b/src/ox/std/strops.hpp @@ -157,7 +157,7 @@ constexpr T ox_itoa(Integer v, T str) noexcept { start = 'a'; digit -= 10; } - str[it] = start + digit; + str[it] = static_cast::type>(start + digit); it++; } }