diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-07 17:56:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-07 17:56:08 +0300 |
commit | 82a4015692e630f36f94a55590c1b59b958c5a17 (patch) | |
tree | 72e7cbd31b45e13d252a38d5fcad4620b48ec6b5 /src/spellmanager.h | |
parent | afc6bb37100fd110512cd1119920719376e87ecf (diff) | |
download | plus-82a4015692e630f36f94a55590c1b59b958c5a17.tar.gz plus-82a4015692e630f36f94a55590c1b59b958c5a17.tar.bz2 plus-82a4015692e630f36f94a55590c1b59b958c5a17.tar.xz plus-82a4015692e630f36f94a55590c1b59b958c5a17.zip |
add missing const and static keywords.
Diffstat (limited to 'src/spellmanager.h')
-rw-r--r-- | src/spellmanager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/spellmanager.h b/src/spellmanager.h index 9fb5da850..f2830edb6 100644 --- a/src/spellmanager.h +++ b/src/spellmanager.h @@ -70,10 +70,10 @@ class SpellManager final private: void fillSpells(); - void invokeSpell(const TextCommand *const spell, - const Being *const target) const; + static void invokeSpell(const TextCommand *const spell, + const Being *const target); - void invokeSpell(const TextCommand *const spell) const; + static void invokeSpell(const TextCommand *const spell); static std::string parseCommand(std::string command, const Being *const target) |