From 3ff57559e36d3254c64e334fbe3bdd47398fe16f Mon Sep 17 00:00:00 2001 From: x12xx12x <44411062+12xx12@users.noreply.github.com> Date: Thu, 2 Dec 2021 00:31:10 +0100 Subject: ItemHandler initialisation is a constant expression (#5344) * Transition to non-pointer item handler * That is my destructor - I decide when I leave this world * I declare your destruction private and you final --- src/Items/ItemLilypad.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Items/ItemLilypad.h') diff --git a/src/Items/ItemLilypad.h b/src/Items/ItemLilypad.h index b448b33c8..f13212b07 100644 --- a/src/Items/ItemLilypad.h +++ b/src/Items/ItemLilypad.h @@ -9,14 +9,14 @@ -class cItemLilypadHandler: +class cItemLilypadHandler final: public cItemHandler { using Super = cItemHandler; public: - cItemLilypadHandler(int a_ItemType): + constexpr cItemLilypadHandler(int a_ItemType): Super(a_ItemType) { @@ -26,7 +26,7 @@ public: - virtual bool IsPlaceable(void) override + virtual bool IsPlaceable(void) const override { return false; // Set as not placeable so OnItemUse is called } @@ -42,7 +42,7 @@ public: const cItem & a_HeldItem, const Vector3i a_ClickedBlockPos, eBlockFace a_ClickedBlockFace - ) override + ) const override { // The client sends BLOCK_FACE_NONE when it determines it should do a tracing-based placement. // Otherwise, a normal block face is sent. -- cgit v1.2.3