diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-01-06 20:25:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-01-06 20:25:51 +0300 |
commit | b98795bfc07a3bad493f0abac35f0b607447f582 (patch) | |
tree | 45424335744a256e89dac200f8d6e2fd1900963e /src/render/imagegraphics.h | |
parent | e6f2965e420da97d989ea4650e2dfc66a0decb3a (diff) | |
download | plus-b98795bfc07a3bad493f0abac35f0b607447f582.tar.gz plus-b98795bfc07a3bad493f0abac35f0b607447f582.tar.bz2 plus-b98795bfc07a3bad493f0abac35f0b607447f582.tar.xz plus-b98795bfc07a3bad493f0abac35f0b607447f582.zip |
Add noexcept into other renderers.
Diffstat (limited to 'src/render/imagegraphics.h')
-rw-r--r-- | src/render/imagegraphics.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/imagegraphics.h b/src/render/imagegraphics.h index 29cfbea18..5e74b766a 100644 --- a/src/render/imagegraphics.h +++ b/src/render/imagegraphics.h @@ -45,10 +45,10 @@ class ImegeGraphics final : public Graphics ~ImegeGraphics(); - void setTarget(Image *const target) restrict2 + void setTarget(Image *const target) restrict2 noexcept { mTarget = target; } - Image *getTarget() const restrict2 + Image *getTarget() const restrict2 noexcept { return mTarget; } void beginDraw() restrict2 override final |