diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-03-25 14:36:29 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-03-25 14:36:29 +0100 |
commit | 947a8d3ab773b539dfc18da20d8e5934b5ea9d62 (patch) | |
tree | f1a2ce5e913c8553a3fd6087a70f84f82c00669b /compat | |
parent | 7d659dbe06cd8efc1d6eb4ef2c5fbc8ae27a4568 (diff) |
use operator""uz c++23 polyfill
Diffstat (limited to 'compat')
-rw-r--r-- | compat/format.hpp | 2 |
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]; } }; |