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-inspect.cpp | |
| parent | 7d659dbe06cd8efc1d6eb4ef2c5fbc8ae27a4568 (diff) | |
use operator""uz c++23 polyfill
Diffstat (limited to 'editor/imgui-inspect.cpp')
| -rw-r--r-- | editor/imgui-inspect.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/imgui-inspect.cpp b/editor/imgui-inspect.cpp index b1ea923c..534dd1cf 100644 --- a/editor/imgui-inspect.cpp +++ b/editor/imgui-inspect.cpp @@ -26,7 +26,7 @@ void app::draw_inspector() const auto dpi = M->dpi_scale(); - for (auto i = inspectors.size()-1; i != -1_uz; i--) + for (auto i = inspectors.size()-1; i != -1uz; i--) { auto [e, target] = inspectors[i]; fm_debug_assert(e); |
