summaryrefslogtreecommitdiffhomepage
path: root/editor
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-10-26 13:04:56 +0200
committerStanislaw Halik <sthalik@misaki.pl>2022-10-26 13:04:56 +0200
commitec53e1734036b35f93ec142a0a3e9ce4e8bbb3f3 (patch)
tree02156b4f60d00822c33729f6f1879f73f6272d8e /editor
parentd07cfb114dcdf7648efe1369af641e740ea76938 (diff)
fix warning
Diffstat (limited to 'editor')
-rw-r--r--editor/update.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/update.cpp b/editor/update.cpp
index 3fd53e23..e9a79be8 100644
--- a/editor/update.cpp
+++ b/editor/update.cpp
@@ -30,7 +30,7 @@ void app::maybe_initialize_chunk_(const chunk_coords& pos, chunk& c)
c[{K+1, K }].wall_west = { _wall2, 0 };
}
-void app::maybe_initialize_chunk(const chunk_coords& pos, chunk& c)
+void app::maybe_initialize_chunk([[maybe_unused]] const chunk_coords& pos, [[maybe_unused]] chunk& c)
{
//maybe_initialize_chunk_(pos, c);
}