Hello,
the file boost/dynamic_bitset.hpp contains a check for MSVC6/7 and it's
STL on line 500. It reads as follows:
#if (defined(_MSC_VER) && (_MSC_VER <= 1300)) || !defined(_CPPLIB_VER)
|| (_CPPLIB_VER < 306) // Dinkumware for VC6/7
Shouldn't this read
#if (defined(_MSC_VER) && (_MSC_VER <= 1300)) && (!defined(_CPPLIB_VER)
|| (_CPPLIB_VER < 306)) // Dinkumware for VC6/7
Markus
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost