Re: [boost] boost::array and VC7 (oil & water)
by John Maddock other posts by this author
Nov 11 2002 12:26PM messages near this date
Re: [boost] boost::array and VC7 (oil & water)
|
RE: [boost] Serialization Submission version 6
> 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
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
Thread:
Victor A. Wagner, Jr.
John Maddock
David Abrahams
Victor A. Wagner, Jr.
David Abrahams
Victor A. Wagner, Jr.
John Maddock
|