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 /editor/imgui-tiles.cpp | |
parent | 7d659dbe06cd8efc1d6eb4ef2c5fbc8ae27a4568 (diff) |
use operator""uz c++23 polyfill
Diffstat (limited to 'editor/imgui-tiles.cpp')
-rw-r--r-- | editor/imgui-tiles.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/imgui-tiles.cpp b/editor/imgui-tiles.cpp index ead843a8..0dbe10d3 100644 --- a/editor/imgui-tiles.cpp +++ b/editor/imgui-tiles.cpp @@ -49,7 +49,7 @@ void app::draw_editor_tile_pane_atlas(tile_editor& ed, StringView name, const st }; const bool perm_selected = ed.is_permutation_selected(atlas); constexpr size_t per_row = 8; - for (auto i = 0_uz; i < N; i++) + for (auto i = 0uz; i < N; i++) { const bool selected = ed.is_tile_selected(atlas, i); if (i > 0 && i % per_row == 0) |