summaryrefslogtreecommitdiffhomepage
path: root/src/world.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/world.hpp')
-rw-r--r--src/world.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/world.hpp b/src/world.hpp
index 4ffac90d..88927166 100644
--- a/src/world.hpp
+++ b/src/world.hpp
@@ -69,7 +69,7 @@ public:
const auto& chunks() const noexcept { return _chunks; }
void serialize(StringView filename);
- static world deserialize(StringView filename);
+ static world deserialize(StringView filename) noexcept(false);
void set_collect_threshold(size_t value) { _collect_every = value; }
size_t collect_threshold() const noexcept { return _collect_every; }
auto frame_no() const { return _current_frame; }