Fixed: Compilation (reverted back some changes)

--HG--
branch : develop
This commit is contained in:
kervala 2018-08-11 15:34:42 +02:00
parent 15355e3815
commit c7ded068d9
2 changed files with 2 additions and 2 deletions

View file

@ -90,7 +90,7 @@ public:
// the following routine shouldn't be needed it should be superceded by a better alternative // the following routine shouldn't be needed it should be superceded by a better alternative
// in the event manager // in the event manager
template <class TState> template <class TState>
bool testCompatibility(const CStateInstance *stateInstance, const TState *state) const bool testCompatibility(CStateInstance *const stateInstance, const TState *const state) const;
protected: protected:
// protected data --------------------------------------------------- // protected data ---------------------------------------------------

View file

@ -28,7 +28,7 @@
#include "continent.h"*/ #include "continent.h"*/
template <class TState> template <class TState>
bool CAIEventReaction::testCompatibility(const CStateInstance *stateInstance, const TState *state) const bool CAIEventReaction::testCompatibility(CStateInstance *const stateInstance, const TState *const state) const
{ {
if (!stateInstance) if (!stateInstance)
return false; return false;