summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-11-29 15:39:42 +0100
committerStanislaw Halik <sthalik@misaki.pl>2022-11-29 16:52:48 +0100
commitbd1dacc570a0e5dc88a9ca0d2ccc3b016007a399 (patch)
tree2154fdcaaf94eadb19b7b71b750c5644f71d1dfc
parent0b59ee2dc3189c2b6207420279e5eb4d904dcb53 (diff)
whitespace
-rw-r--r--editor/app.cpp3
-rw-r--r--src/scenery.hpp4
-rw-r--r--src/world.hpp2
3 files changed, 6 insertions, 3 deletions
diff --git a/editor/app.cpp b/editor/app.cpp
index 850f19e3..a0c086cf 100644
--- a/editor/app.cpp
+++ b/editor/app.cpp
@@ -26,8 +26,9 @@ app::app(fm_settings&& opts) :
reset_camera_offset();
}
-app::~app() // NOLINT(modernize-use-equals-default)
+app::~app()
{
+ void();
}
int app::exec()
diff --git a/src/scenery.hpp b/src/scenery.hpp
index e5313c25..90cead3d 100644
--- a/src/scenery.hpp
+++ b/src/scenery.hpp
@@ -42,7 +42,9 @@ struct scenery final
scenery() noexcept;
scenery(none_tag_t) noexcept;
- scenery(generic_tag_t, const anim_atlas& atlas, rotation r, frame_t frame = 0, bool passable = false, bool blocks_view = false, bool animated = false, bool active = false, bool interactive = false);
+ scenery(generic_tag_t, const anim_atlas& atlas, rotation r, frame_t frame = 0,
+ bool passable = false, bool blocks_view = false, bool animated = false,
+ bool active = false, bool interactive = false);
scenery(door_tag_t, const anim_atlas& atlas, rotation r, bool is_open = false);
bool can_activate() const noexcept;
diff --git a/src/world.hpp b/src/world.hpp
index 69710bb6..b95baf62 100644
--- a/src/world.hpp
+++ b/src/world.hpp
@@ -45,7 +45,7 @@ public:
void collect(bool force = false);
std::size_t size() const noexcept { return _chunks.size(); }
- [[deprecated]] const auto& chunks() const noexcept { return _chunks; } // only for serialization
+ [[deprecated]] const auto& chunks() const noexcept { return _chunks; } // only for serialization
void serialize(StringView filename);
static world deserialize(StringView filename);