summaryrefslogtreecommitdiffhomepage
path: root/test/json.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-10-27 14:42:14 +0200
committerStanislaw Halik <sthalik@misaki.pl>2022-10-27 14:42:14 +0200
commitedb014053ebd3256b3bce16d8d5ac6479d905a2e (patch)
tree0194c62a27ea31ed8594af93f71ae7b0f2374ca3 /test/json.cpp
parent0c468a802bd6c41bf57bd674cb9f44157a3af155 (diff)
kill serializing the world for now
Diffstat (limited to 'test/json.cpp')
-rw-r--r--test/json.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/json.cpp b/test/json.cpp
index 198f2d48..8ea2bd09 100644
--- a/test/json.cpp
+++ b/test/json.cpp
@@ -11,6 +11,7 @@
namespace floormat {
+[[maybe_unused]]
static chunk make_test_chunk()
{
auto metal1 = loader.tile_atlas("metal1", {2, 2}),
@@ -47,10 +48,6 @@ bool floormat::test_json() // NOLINT(readability-convert-member-functions-to-sta
Magnum::Math::Vector3 vec{0.f/zero, -1.f/zero, 123.f};
json_helper::to_json(vec, output_dir/"vec3_inf.json");
}
- {
- const auto chunk = make_test_chunk();
- json_helper::to_json(chunk, output_dir/"zzz_chunk-1.json");
- }
return true;
}