From 73f648616f2528db0bdb02d23409b7b3e34f62c2 Mon Sep 17 00:00:00 2001 From: Lynix Date: Mon, 25 Apr 2016 18:33:40 +0200 Subject: [PATCH] Sdk/State: Fix linker errors Former-commit-id: e9a23daa5f5b0bb2964541ed7def2422703a541b --- SDK/include/NDK/State.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SDK/include/NDK/State.hpp b/SDK/include/NDK/State.hpp index 0a113def3..613a504ab 100644 --- a/SDK/include/NDK/State.hpp +++ b/SDK/include/NDK/State.hpp @@ -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;