diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-17 20:03:14 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-17 20:03:14 +0300 |
commit | 55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d (patch) | |
tree | b1108bef76eed589fcb0028c4bd97f14510e940f /src/being/being.h | |
parent | 72b9b0b8b7f3e0b60bf7a926b44aaa589dd131e8 (diff) | |
download | plus-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.tar.gz plus-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.tar.bz2 plus-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.tar.xz plus-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.zip |
Remove override keyword, if it present with final.
Diffstat (limited to 'src/being/being.h')
-rw-r--r-- | src/being/being.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/being/being.h b/src/being/being.h index 606db0a35..4b8a03152 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -106,7 +106,7 @@ class Being notfinal : public ActorSprite, virtual ~Being(); - ActorTypeT getType() const restrict2 noexcept override final + ActorTypeT getType() const restrict2 noexcept final A_WARN_UNUSED { return mType; } @@ -364,7 +364,7 @@ class Being notfinal : public ActorSprite, const BeingInfo *getInfo() const restrict2 noexcept A_WARN_UNUSED { return mInfo; } - TargetCursorSizeT getTargetCursorSize() const restrict2 override final + TargetCursorSizeT getTargetCursorSize() const restrict2 final A_WARN_UNUSED; int getTargetOffsetX() const restrict2 override A_WARN_UNUSED @@ -484,13 +484,13 @@ class Being notfinal : public ActorSprite, /** * Returns the horizontal size of the current base sprite of the being. */ - int getWidth() const restrict2 override final A_WARN_UNUSED + int getWidth() const restrict2 final A_WARN_UNUSED { return std::max(CompoundSprite::getWidth(), DEFAULT_BEING_WIDTH); } /** * Returns the vertical size of the current base sprite of the being. */ - int getHeight() const restrict2 override final A_WARN_UNUSED + int getHeight() const restrict2 final A_WARN_UNUSED { return std::max(CompoundSprite::getHeight(), DEFAULT_BEING_HEIGHT); } /** @@ -529,7 +529,7 @@ class Being notfinal : public ActorSprite, virtual void drawSpritesSDL(Graphics *restrict const graphics, const int posX, const int posY) const - restrict2 override final A_NONNULL(2); + restrict2 final A_NONNULL(2); void drawHpBar(Graphics *restrict const graphics, const int maxHP, @@ -629,7 +629,7 @@ class Being notfinal : public ActorSprite, void draw(Graphics *restrict const graphics, const int offsetX, const int offsetY) const - restrict2 override final A_NONNULL(2); + restrict2 final A_NONNULL(2); void drawPlayer(Graphics *restrict const graphics, const int offsetX, @@ -916,14 +916,14 @@ class Being notfinal : public ActorSprite, { return mLastAttackY; } #ifdef EATHENA_SUPPORT - void setTrickDead(const bool b) restrict2 override final; + void setTrickDead(const bool b) restrict2 final; void setChat(ChatObject *restrict const obj) restrict2; ChatObject *getChat() const restrict2 noexcept { return mChat; } - void setRiding(const bool b) restrict2 override final; + void setRiding(const bool b) restrict2 final; void setHorse(const int horseId) restrict2; @@ -944,7 +944,7 @@ class Being notfinal : public ActorSprite, unsigned int getSpiritBalls() const restrict2 noexcept A_WARN_UNUSED { return mSpiritBalls; } - void stopCast(const bool b) override final; + void stopCast(const bool b) final; void setCreatorId(const BeingId id) { mCreatorId = id; } |