diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-28 22:47:20 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-28 22:47:20 +0200 |
commit | 9954b8b4f5fb95470e127a4f24a0c73289dd49a9 (patch) | |
tree | cf1586b0ebc57837714fc809d523e847f0e286db /src | |
parent | 280b4c235fe11dd629f882f0fb5054384fcee1d7 (diff) |
a
Diffstat (limited to 'src')
-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 a18f41f8..ae7b6240 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -39,7 +39,7 @@ public: bool contains(chunk_coords c) const noexcept; void clear(); void collect(bool force = false); - constexpr std::size_t size() const noexcept { return _chunks.size(); } + std::size_t size() const noexcept { return _chunks.size(); } [[deprecated]] const auto& chunks() const noexcept { return _chunks; } // only for serialization |