Fix another lot of warnings from Clang

Closes #90
Closes #91
Closes #92
Closes #93
This commit is contained in:
Lynix
2016-10-17 16:01:05 +02:00
parent 7e594a861f
commit 4c6f049e0d
26 changed files with 87 additions and 71 deletions

View File

@@ -4,7 +4,7 @@
class TestState : public Ndk::State
{
public:
void Enter(Ndk::StateMachine& fsm) override
void Enter(Ndk::StateMachine& /*fsm*/) override
{
m_isUpdated = false;
}
@@ -14,11 +14,11 @@ class TestState : public Ndk::State
return m_isUpdated;
}
void Leave(Ndk::StateMachine& fsm) override
void Leave(Ndk::StateMachine& /*fsm*/) override
{
}
bool Update(Ndk::StateMachine& fsm, float elapsedTime) override
bool Update(Ndk::StateMachine& /*fsm*/, float /*elapsedTime*/) override
{
m_isUpdated = true;
return true;