diff options
-rw-r--r-- | include/Platform.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Platform.h b/include/Platform.h index 0164983e9..628611132 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -273,7 +273,7 @@ class ColourStop { public: float position; ColourAlpha colour; - constexpr ColourStop(float position_, ColourAlpha colour_) noexcept : + ColourStop(float position_, ColourAlpha colour_) noexcept : position(position_), colour(colour_) { } }; @@ -291,7 +291,7 @@ struct FontParameters { int technology; int characterSet; - constexpr FontParameters( + FontParameters( const char *faceName_, float size_=10, int weight_=400, |