diff --git a/deps/ox/src/ox/std/strconv.hpp b/deps/ox/src/ox/std/strconv.hpp index 6bd27d69..e160d947 100644 --- a/deps/ox/src/ox/std/strconv.hpp +++ b/deps/ox/src/ox/std/strconv.hpp @@ -32,7 +32,7 @@ constexpr ox::Error writeItoa(Integer v, ox::Writer_c auto &writer) noexcept { val %= mod; mod /= base; if (it || digit) { - ox::ResizedInt_t start = '0'; + constexpr auto start = '0'; if (digit >= 10) [[unlikely]] { digit -= 10; OX_RETURN_ERROR(writer.put('1'));