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