diff options
Diffstat (limited to 'src/being/being.h')
-rw-r--r-- | src/being/being.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/being/being.h b/src/being/being.h index 0f094c908..a2ca63cf0 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -236,7 +236,7 @@ class Being notfinal : public ActorSprite, */ void setGuildName(const std::string &name); - void setGuildPos(const std::string &pos); + void setGuildPos(const std::string &pos) A_CONST; /** * Adds a guild to the being. @@ -859,9 +859,9 @@ class Being notfinal : public ActorSprite, void setLook(const uint16_t look); - static uint8_t genderToInt(const GenderT sex) A_WARN_UNUSED; + static uint8_t genderToInt(const GenderT sex) A_CONST A_WARN_UNUSED; - static GenderT intToGender(const uint8_t sex) A_WARN_UNUSED; + static GenderT intToGender(const uint8_t sex) A_CONST A_WARN_UNUSED; NextSoundInfo mNextSound; |