diff --git a/format.ipp b/format.ipp index 5ae7f17b..6bd06082 100644 --- a/format.ipp +++ b/format.ipp @@ -788,7 +788,7 @@ namespace util::format::detail { "0123456789abcdef"; char buffer[numerals]; - size_t remain = numerals; + auto remain = numerals; for (auto cursor = buffer; remain--; t /= spec.base) *cursor++ = NUMERALS[t % spec.base];