From d48b24e8b8cbe0b79f7fc4a05acf761ae30bf257 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Wed, 21 Jan 2026 23:34:36 -0600 Subject: [PATCH] [ox/std] Cleanup (synced from 53a224cf8f93abafd5e12c82a9a6de391d53efcf) --- src/ox/std/strconv.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ox/std/strconv.hpp b/src/ox/std/strconv.hpp index 6bd27d69e..e160d9476 100644 --- a/src/ox/std/strconv.hpp +++ b/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'));