summaryrefslogtreecommitdiffhomepage
path: root/compat/format.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'compat/format.hpp')
-rw-r--r--compat/format.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/format.hpp b/compat/format.hpp
index 1432d847..bf6e8861 100644
--- a/compat/format.hpp
+++ b/compat/format.hpp
@@ -27,7 +27,7 @@ struct fmt_string final {
template <std::size_t... Is>
consteval fmt_string(const char (&arr)[N]) noexcept {
- for (std::size_t i = 0; i < N; i++)
+ for (auto i = 0_uz; i < N; i++)
data[i] = arr[i];
}
};