Boost logo

Boost :

From: John Maddock (jm_at_[hidden])
Date: 2002-11-11 07:26:25


> Yup, this works
> #elif defined(BOOST_MSVC) && (BOOST_MSVC == 1300) &&
> defined(BOOST_DINKUMWARE_STDLIB) && (BOOST_DINKUMWARE_STDLIB == 310)
>
> I'd check it in, but I haven't write access to the repository.
> I still have the problem in ONE of my programs.

I've changed to:

#elif defined(_MSC_VER) && (_MSC_VER == 1300) &&
defined(BOOST_DINKUMWARE_STDLIB) && (BOOST_DINKUMWARE_STDLIB == 310)

Which is working for all the array test programs that VC7 can handle, and
should work for Intel C++ as well (the previous version wouldn't have), BTW
I don't want to check for BOOST_DINKUMWARE_STDLIB on it's own as this can be
set on non-Wintel platforms as well.

What else is still failing?

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