diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-12-10 19:38:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-12-10 19:38:50 +0300 |
commit | 7e53a47d6f3e2dfb1446384e674f9d391bd23f7a (patch) | |
tree | fc70f25f54b3111af649d951eafbff4a2d1b2e4b /src/resources/dye/dye.h | |
parent | 7789f85902979a3ce1282449af0236079d9925a2 (diff) | |
download | plus-7e53a47d6f3e2dfb1446384e674f9d391bd23f7a.tar.gz plus-7e53a47d6f3e2dfb1446384e674f9d391bd23f7a.tar.bz2 plus-7e53a47d6f3e2dfb1446384e674f9d391bd23f7a.tar.xz plus-7e53a47d6f3e2dfb1446384e674f9d391bd23f7a.zip |
Add restrict and noexcept in dye and dyepalette.
Diffstat (limited to 'src/resources/dye/dye.h')
-rw-r--r-- | src/resources/dye/dye.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/dye/dye.h b/src/resources/dye/dye.h index 44052822b..6313fa255 100644 --- a/src/resources/dye/dye.h +++ b/src/resources/dye/dye.h @@ -63,19 +63,19 @@ class Dye final /** * Return special dye palete (S) */ - const DyePalette *getSPalete() const A_WARN_UNUSED + const DyePalette *getSPalete() const restrict2 noexcept2 A_WARN_UNUSED { return mDyePalettes[sPaleteIndex]; } /** * Return special dye palete (A) */ - const DyePalette *getAPalete() const A_WARN_UNUSED + const DyePalette *getAPalete() const restrict2 noexcept2 A_WARN_UNUSED { return mDyePalettes[aPaleteIndex]; } /** * Return dye type for S - 1, for A - 2, 0 for other */ - int getType() const restrict2 A_WARN_UNUSED; + int getType() const restrict2 noexcept2 A_WARN_UNUSED; void normalDye(uint32_t *restrict pixels, const int bufSize) const restrict2; |