From b98795bfc07a3bad493f0abac35f0b607447f582 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 6 Jan 2016 20:25:51 +0300 Subject: Add noexcept into other renderers. --- src/render/surfacegraphics.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/render/surfacegraphics.h') 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) -- cgit v1.2.3-70-g09d2