diff options
Diffstat (limited to 'src/render/surfacegraphics.h')
-rw-r--r-- | src/render/surfacegraphics.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/render/surfacegraphics.h b/src/render/surfacegraphics.h index 5162a7874..8a9a61a3b 100644 --- a/src/render/surfacegraphics.h +++ b/src/render/surfacegraphics.h @@ -47,10 +47,10 @@ class SurfaceGraphics final : public Graphics ~SurfaceGraphics(); - void setTarget(SDL_Surface *restrict const target) restrict2 + void setTarget(SDL_Surface *restrict const target) restrict2 noexcept { mTarget = target; } - SDL_Surface *getTarget() const restrict2 + SDL_Surface *getTarget() const restrict2 noexcept { return mTarget; } void beginDraw() restrict2 override final @@ -151,10 +151,10 @@ class SurfaceGraphics final : public Graphics restrict2 override final { } - void setBlitMode(const BlitModeT mode) restrict2 + void setBlitMode(const BlitModeT mode) restrict2 noexcept { mBlitMode = mode; } - BlitModeT getBlitMode() const restrict2 A_WARN_UNUSED + BlitModeT getBlitMode() const restrict2 noexcept A_WARN_UNUSED { return mBlitMode; } void fillRectangle(const Rect &restrict rect A_UNUSED) |