From f60c3734e38408b97e10e29a6c1d8780770d5b79 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Mon, 27 Feb 2023 07:29:42 +0100 Subject: compat/prelude: add operator""_uz() for size_t --- test/serializer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/serializer.cpp b/test/serializer.cpp index 3e1e6a97..71b1a3f1 100644 --- a/test/serializer.cpp +++ b/test/serializer.cpp @@ -37,7 +37,7 @@ chunk test_app::make_test_chunk() static bool chunks_equal(const chunk& a, const chunk& b) { - for (std::size_t i = 0; i < TILE_COUNT; i++) + for (auto i = 0_uz; i < TILE_COUNT; i++) { const auto &a1 = a[i], &b1 = b[i]; if (a1 != b1) -- cgit v1.2.3