summaryrefslogtreecommitdiff
path: root/src/resources/dye/dye.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/dye/dye.h')
-rw-r--r--src/resources/dye/dye.h6
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;