summaryrefslogtreecommitdiffhomepage
path: root/test/tile-iter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/tile-iter.cpp')
-rw-r--r--test/tile-iter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tile-iter.cpp b/test/tile-iter.cpp
index 85ad8797..5248f7ce 100644
--- a/test/tile-iter.cpp
+++ b/test/tile-iter.cpp
@@ -15,7 +15,7 @@ void test_app::test_tile_iter() // NOLINT(readability-function-size)
if (always_false())
{
world w;
- const chunk c{w};
+ const chunk c{w, {}};
for ([[maybe_unused]] const auto& [x, k, pt] : c)
static_assert(std::is_same_v<decltype(x), const tile_proto>);
for ([[maybe_unused]] const auto [x, k, pt] : c)
@@ -26,7 +26,7 @@ void test_app::test_tile_iter() // NOLINT(readability-function-size)
if (always_false())
{
world w;
- chunk c{w};
+ chunk c{w, {}};
for ([[maybe_unused]] auto [x, k, pt] : c)
static_assert(std::is_same_v<decltype(x), tile_ref>);
for ([[maybe_unused]] const auto [x, k, pt] : c)