From da4e3c6509fa6e00f5bbcb3a34607dd966650d1a Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Sat, 16 Dec 2017 19:23:01 +0100 Subject: Clean up the virtual dtor mess. --- src/world.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/world.cpp') diff --git a/src/world.cpp b/src/world.cpp index a5e8869..a41b793 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -369,6 +369,10 @@ entity_t::entity_t(int type_) type = type_; } +entity_t::~entity_t(void) +{ +} + void entity_t::link_to_sector(sector_t *sector) { parents.push_back(sector); -- cgit