Merge pull request #2857 from elsid/aipackage_cleanup

Remove redundant explicit dtor definition for AiPackage
pull/2861/head
Bret Curtis 5 years ago committed by GitHub
commit 72507e57c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

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

Loading…
Cancel
Save