| Index: sky/engine/platform/graphics/Color.cpp
|
| diff --git a/sky/engine/platform/graphics/Color.cpp b/sky/engine/platform/graphics/Color.cpp
|
| index de8789871f822e32966ae0810f8a659438e1bfa6..bd88d5de3d15d56c0fc33bfb1052366299c5255c 100644
|
| --- a/sky/engine/platform/graphics/Color.cpp
|
| +++ b/sky/engine/platform/graphics/Color.cpp
|
| @@ -35,6 +35,7 @@
|
|
|
| namespace blink {
|
|
|
| +#if !COMPILER(MSVC)
|
| // FIXME: Use C++11 strong enums to avoid static data member with initializer definition problems.
|
| const RGBA32 Color::black;
|
| const RGBA32 Color::white;
|
| @@ -42,6 +43,7 @@ const RGBA32 Color::darkGray;
|
| const RGBA32 Color::gray;
|
| const RGBA32 Color::lightGray;
|
| const RGBA32 Color::transparent;
|
| +#endif
|
|
|
| static const RGBA32 lightenedBlack = 0xFF545454;
|
| static const RGBA32 darkenedWhite = 0xFFABABAB;
|
|
|