Skip to content

Commit 67a7669

Browse files
author
Ralf W. Grosse-Kunstleve
committed
work around Visual C++ 6 problem
[SVN r31075]
1 parent e80545a commit 67a7669

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

test/data_members.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,11 @@ namespace
6464
static const Color3 black;
6565
};
6666

67-
const Color3 Color3::black = {} ;
67+
const Color3 Color3::black
68+
#if !BOOST_WORKAROUND(BOOST_MSVC, == 1200)
69+
= {}
70+
#endif
71+
;
6872

6973
void compilability_test()
7074
{

0 commit comments

Comments
 (0)