2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-26 06:42:27 +00:00

work around Visual C++ 6 problem

[SVN r31075]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2005-09-22 06:20:25 +00:00
parent e80545a7d3
commit 67a7669ff4

View File

@@ -64,7 +64,11 @@ namespace
static const Color3 black;
};
const Color3 Color3::black = {} ;
const Color3 Color3::black
#if !BOOST_WORKAROUND(BOOST_MSVC, == 1200)
= {}
#endif
;
void compilability_test()
{