mirror of https://github.com/adamdruppe/arsd.git
remove old hack to workaround dmd bug, now fixed
This commit is contained in:
parent
234e014b3b
commit
fc1cfc1f8a
6
color.d
6
color.d
|
@ -154,11 +154,7 @@ struct Color {
|
|||
/// Construct a color with the given values. They should be in range 0 <= x <= 255, where 255 is maximum intensity and 0 is minimum intensity.
|
||||
nothrow pure @nogc
|
||||
this(int red, int green, int blue, int alpha = 255) {
|
||||
// workaround dmd bug 10937
|
||||
if(__ctfe)
|
||||
this.components[0] = cast(ubyte) red;
|
||||
else
|
||||
this.r = cast(ubyte) red;
|
||||
this.r = cast(ubyte) red;
|
||||
this.g = cast(ubyte) green;
|
||||
this.b = cast(ubyte) blue;
|
||||
this.a = cast(ubyte) alpha;
|
||||
|
|
Loading…
Reference in New Issue