summaryrefslogtreecommitdiff
path: root/src/resources/dye/dyecolor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/dye/dyecolor.h')
-rw-r--r--src/resources/dye/dyecolor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/dye/dyecolor.h b/src/resources/dye/dyecolor.h
index a7b5bbd7f..c28428a0d 100644
--- a/src/resources/dye/dyecolor.h
+++ b/src/resources/dye/dyecolor.h
@@ -25,14 +25,14 @@
struct DyeColor final
{
- DyeColor() noexcept
+ DyeColor() noexcept2
{
value[3] = 255;
}
DyeColor(const uint8_t r,
const uint8_t g,
- const uint8_t b) noexcept
+ const uint8_t b) noexcept2
{
value[0] = r;
value[1] = g;
@@ -43,7 +43,7 @@ struct DyeColor final
DyeColor(const uint8_t r,
const uint8_t g,
const uint8_t b,
- const uint8_t a) noexcept
+ const uint8_t a) noexcept2
{
value[0] = r;
value[1] = g;