From 135a65e200d372dd31f19639d25c9b5aa1459252 Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Fri, 9 Dec 2011 11:20:19 +0100 Subject: Add virtual destructors to abstract classes IRespawnInitiator and InventoryActions are abstract classes, but they were missing a virtual destructor. Define it, even if it does nothing and its absence most likely makes no difference other tha causing warnings during compile. --- src/inventory.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/inventory.h') diff --git a/src/inventory.h b/src/inventory.h index c16b9a310..795d32d3e 100644 --- a/src/inventory.h +++ b/src/inventory.h @@ -554,11 +554,12 @@ public: struct InventoryAction { static InventoryAction * deSerialize(std::istream &is); - + virtual u16 getType() const = 0; virtual void serialize(std::ostream &os) const = 0; virtual void apply(InventoryContext *c, InventoryManager *mgr, ServerEnvironment *env) = 0; + virtual ~InventoryAction() {}; }; struct IMoveAction : public InventoryAction -- cgit v1.2.3