Re: [boost] [Boost.Config] Request for new config macro

2003-02-11 Thread John Maddock
> I would like to propose the addition of a new config macro to Boost.Config: > BOOST_USING_OLD_STYLE_IOSTREAMS > > A (possibly incomplete) implementation is: > #if defined(__GNUC__) && (__GNUC__ < 3) && !defined(__STL_USE_NEW_IOSTREAMS) > || defined(_MSC_VER) && (_MSC_VER < 1300) > #define

[boost] [Boost.Config] Request for new config macro

2003-02-10 Thread Gustavo Guerra
Hi, I would like to propose the addition of a new config macro to Boost.Config: BOOST_USING_OLD_STYLE_IOSTREAMS A (possibly incomplete) implementation is: #if defined(__GNUC__) && (__GNUC__ < 3) && !defined(__STL_USE_NEW_IOSTREAMS) || defined(_MSC_VER) && (_MSC_VER < 1300) #define BOOST_USI