id summary reporter owner description type status milestone component version severity resolution keywords cc 1585 [test] another compiler errors when building with stdcxx library faridz@… Gennadiy Rozental " The following errors are encountered when running boost regression tests on msvc with stdcxx-4.2.0. {{{ framework.cpp ..\boost\test\test_tools.hpp(383) : error C2039: 'boolalpha' : is not a member of 'std' ..\boost\test\test_tools.hpp(383) : error C2065: 'boolalpha' : undeclared identifier ..\boost\test\test_tools.hpp(383) : error C2593: 'operator <<' is ambiguous }}} The proposed patch: {{{ Index: boost/test/test_tools.hpp =================================================================== --- boost/test/test_tools.hpp (revision 42906) +++ boost/test/test_tools.hpp (working copy) @@ -44,6 +44,7 @@ // STL #include // for std::size_t #include +#include // for std::boolalpha #include // for CHAR_BIT #include }}} " Bugs closed Boost 1.35.0 test Boost Development Trunk Showstopper fixed John Maddock