diff --git a/deps/ox/src/ox/std/strops.hpp b/deps/ox/src/ox/std/strops.hpp index 5dc646e4..b78c111e 100644 --- a/deps/ox/src/ox/std/strops.hpp +++ b/deps/ox/src/ox/std/strops.hpp @@ -143,7 +143,7 @@ template template constexpr T ox_itoa(Integer v, T str) noexcept { if (v) { - auto mod = 1000000000000000000; + ox::ResizedInt_t mod = 1000000000000000000; constexpr auto base = 10; auto it = 0; if (v < 0) { @@ -155,7 +155,7 @@ constexpr T ox_itoa(Integer v, T str) noexcept { v %= mod; mod /= base; if (it || digit) { - int start = '0'; + ox::ResizedInt_t start = '0'; if (digit >= 10) { start = 'a'; digit -= 10;