$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Markus Schöpflin (markus.schoepflin_at_[hidden])
Date: 2002-09-30 09:56:38
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