Boost logo

Boost :

From: John Maddock (jm_at_[hidden])
Date: 2002-10-08 06:26:33


> I am trying to use the boost array library with VC7 and STLport-4.5.3.
> array.hpp at line 56, reads
>
> #elif defined(BOOST_MSVC) && (BOOST_MSVC == 1300)

That is a config problem - and it's been fixed in the latest cvs version
where that reads:

#elif (defined(BOOST_MSVC) && (BOOST_MSVC == 1300) || (defined(__ICL) &&
defined(_CPPLIB_VER) && (_CPPLIB_VER == 310))) && !defined(__SGI_STL_PORT)
&& !defined(_STLPORT_VERSION)

regards,

John Maddock
http://ourworld.compuserve.com/homepages/john_maddock/index.htm


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