diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-14 19:40:18 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-14 19:40:18 +0100 |
commit | 07018b1d1247f4fb558a2b551dd8d4ca35346377 (patch) | |
tree | 51ee528771fbb77ee1f62adf38a1d8cca1c8ac8c /src/scenery.hpp | |
parent | 626e49662839a1ecd505547a5671d1ab8ac5b4aa (diff) |
switch back to using StringView in atlas loader
Diffstat (limited to 'src/scenery.hpp')
-rw-r--r-- | src/scenery.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/scenery.hpp b/src/scenery.hpp index e6e483fa..8b003e73 100644 --- a/src/scenery.hpp +++ b/src/scenery.hpp @@ -47,10 +47,10 @@ struct scenery_proto : object_proto { scenery_proto_variants subtype; - scenery_proto(); - scenery_proto(const scenery_proto&); + scenery_proto() noexcept; + scenery_proto(const scenery_proto&) noexcept; ~scenery_proto() noexcept override; - scenery_proto& operator=(const scenery_proto&); + scenery_proto& operator=(const scenery_proto&) noexcept; bool operator==(const object_proto& proto) const override; explicit operator bool() const; enum scenery_type scenery_type() const; |