diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-06-24 01:13:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-06-24 01:13:26 +0300 |
commit | 1498a699f89f7b5aebdc4629c645c3702ee04f92 (patch) | |
tree | 24d74cc7efc31ba2447c76ad301e3192e38b4cf4 /src/being/being.h | |
parent | c551f8981eba838d07245d1597e9deaa00427cee (diff) | |
download | ManaVerse-1498a699f89f7b5aebdc4629c645c3702ee04f92.tar.gz ManaVerse-1498a699f89f7b5aebdc4629c645c3702ee04f92.tar.bz2 ManaVerse-1498a699f89f7b5aebdc4629c645c3702ee04f92.tar.xz ManaVerse-1498a699f89f7b5aebdc4629c645c3702ee04f92.zip |
Add A_NONNULL attribute to all parameters with class Graphics.
Diffstat (limited to 'src/being/being.h')
-rw-r--r-- | src/being/being.h | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/src/being/being.h b/src/being/being.h index e957228c2..bf389c324 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -355,8 +355,9 @@ class Being notfinal : public ActorSprite, /** * Draws the emotion picture above the being. */ - void drawEmotion(Graphics *const graphics, const int offsetX, - const int offsetY) const; + void drawEmotion(Graphics *const graphics, + const int offsetX, + const int offsetY) const A_NONNULL(2); BeingTypeId getSubType() const { return mSubType; } @@ -530,10 +531,13 @@ class Being notfinal : public ActorSprite, void setState(const uint8_t state); virtual void drawSprites(Graphics *const graphics, - int posX, int posY) const override final; + int posX, + int posY) const override final A_NONNULL(2); virtual void drawSpritesSDL(Graphics *const graphics, - int posX, int posY) const override final; + int posX, + int posY) const override final + A_NONNULL(2); void drawHpBar(Graphics *const graphics, const int maxHP, @@ -544,7 +548,7 @@ class Being notfinal : public ActorSprite, const int x, const int y, const int width, - const int height) const; + const int height) const A_NONNULL(2); static void load(); @@ -622,10 +626,11 @@ class Being notfinal : public ActorSprite, void talkTo() const; void draw(Graphics *const graphics, - const int offsetX, const int offsetY) const override final; + const int offsetX, + const int offsetY) const override final A_NONNULL(2); void drawSpriteAt(Graphics *const graphics, - const int x, const int y) const; + const int x, const int y) const A_NONNULL(2); void setMoveTime() { mMoveTime = cur_time; } |