1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-31 20:15:32 +00:00

Remove redundant explicit dtor definition for AiPackage

This commit is contained in:
elsid 2020-05-16 19:05:52 +02:00
parent b168544445
commit 3b5ce71d71
No known key found for this signature in database
GPG key ID: B845CB9FEE18AB40
2 changed files with 1 additions and 4 deletions

View file

@ -24,8 +24,6 @@
#include <osg/Quat>
MWMechanics::AiPackage::~AiPackage() {}
MWMechanics::AiPackage::AiPackage() :
mTimer(AI_REACTION_TIME + 1.0f), // to force initial pathbuild
mTargetActorRefId(""),

View file

@ -56,8 +56,7 @@ namespace MWMechanics
///Default constructor
AiPackage();
///Default Deconstructor
virtual ~AiPackage();
virtual ~AiPackage() = default;
///Clones the package
virtual AiPackage *clone() const = 0;