[ox/std] Cleanup

(synced from 53a224cf8f)
This commit is contained in:
2026-01-21 23:34:36 -06:00
parent 249c924d89
commit d48b24e8b8
+1 -1
View File
@@ -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<Integer, 64> start = '0';
constexpr auto start = '0';
if (digit >= 10) [[unlikely]] {
digit -= 10;
OX_RETURN_ERROR(writer.put('1'));