From 67a7669ff487c85fc1a2ad9b02b60ddfa5c89c30 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Thu, 22 Sep 2005 06:20:25 +0000 Subject: [PATCH] work around Visual C++ 6 problem [SVN r31075] --- test/data_members.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/data_members.cpp b/test/data_members.cpp index b163abb7..f7b29083 100644 --- a/test/data_members.cpp +++ b/test/data_members.cpp @@ -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() {