diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-03-18 16:43:22 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-03-18 16:43:35 +0100 |
commit | f82e612070b3edc963e787f121a58a2821ffa2a5 (patch) | |
tree | edb1c32c2ed31f0ceddd76843a5aa5f33bd35d0d /src/world.hpp | |
parent | 6e7e8c4880b86d4477839cb087b34b4282e5516a (diff) |
decruft
Diffstat (limited to 'src/world.hpp')
-rw-r--r-- | src/world.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/world.hpp b/src/world.hpp index 0b7b87a5..f29a83e2 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -60,7 +60,7 @@ public: void maybe_collect(); std::size_t size() const noexcept { return _chunks.size(); } - [[deprecated]] const auto& chunks() const noexcept { return _chunks; } // only for serialization + const auto& chunks() const noexcept { return _chunks; } void serialize(StringView filename); static world deserialize(StringView filename); |