Boost logo

Boost :

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


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk