Core/Misc: GCC 6.3 build fix

This commit is contained in:
Shauren
2018-04-22 17:22:26 +02:00
parent 10594b2662
commit f1ab32fbb7
2 changed files with 6 additions and 2 deletions

View File

@@ -26,7 +26,9 @@
#include "Random.h"
template<class T>
ConfusedMovementGenerator<T>::~ConfusedMovementGenerator() = default;
ConfusedMovementGenerator<T>::~ConfusedMovementGenerator()
{
}
template<class T>
MovementGeneratorType ConfusedMovementGenerator<T>::GetMovementGeneratorType() const

View File

@@ -31,7 +31,9 @@
#define MAX_QUIET_DISTANCE 43.0f
template<class T>
FleeingMovementGenerator<T>::~FleeingMovementGenerator() = default;
FleeingMovementGenerator<T>::~FleeingMovementGenerator()
{
}
template<class T>
MovementGeneratorType FleeingMovementGenerator<T>::GetMovementGeneratorType() const