Sdk/State: Fix linker errors

Former-commit-id: e9a23daa5f5b0bb2964541ed7def2422703a541b
This commit is contained in:
Lynix 2016-04-25 18:33:40 +02:00
parent 8700b21a96
commit 73f648616f
1 changed files with 2 additions and 2 deletions

View File

@ -16,8 +16,8 @@ namespace Ndk
class State
{
public:
State();
~State();
State() = default;
~State() = default;
virtual void Enter(StateMachine& fsm) = 0;
virtual void Leave(StateMachine& fsm) = 0;