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:
@@ -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()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user