diff --git a/deps/ox/src/ox/std/strops.hpp b/deps/ox/src/ox/std/strops.hpp index 39213831..d2534638 100644 --- a/deps/ox/src/ox/std/strops.hpp +++ b/deps/ox/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++; } }