diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-18 13:35:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 15:12:20 +0300 |
commit | 4b0d72f3959911e5453683bbab75f08c2c84a6e9 (patch) | |
tree | ac08e410188b54b35b959160e472a7ca505193f2 | |
parent | 93458052fe1c44e1ecca7a29abc5304f626120ac (diff) | |
download | plus-4b0d72f3959911e5453683bbab75f08c2c84a6e9.tar.gz plus-4b0d72f3959911e5453683bbab75f08c2c84a6e9.tar.bz2 plus-4b0d72f3959911e5453683bbab75f08c2c84a6e9.tar.xz plus-4b0d72f3959911e5453683bbab75f08c2c84a6e9.zip |
fix const in guild declaration.
-rw-r--r-- | src/guild.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guild.h b/src/guild.h index d5dcb7234..a5f724e44 100644 --- a/src/guild.h +++ b/src/guild.h @@ -174,7 +174,7 @@ public: void sort(); - std::string getPos(int id) const A_WARN_UNUSED; + std::string getPos(const int id) const A_WARN_UNUSED; static Guild *getGuild(const int16_t id) A_WARN_UNUSED; |