Boost logo

Boost Users :

From: John Maddock (john_at_[hidden])
Date: 2008-01-22 04:24:52


David R. Palmer wrote:
> #elif defined(BOOST_MSVC) && (BOOST_MSVC == 1310)
>
> // vc71:
> # define BOOST_LIB_TOOLSET "vc71"

This line:

> #elif defined(BOOST_MSVC) && (BOOST_MSVC >= 1400)

Is wrong, it should say:

#elif defined(BOOST_MSVC) && (BOOST_MSVC == 1400)

Which confuses me, because it's never read the way you have it according to
SVN history at
http://svn.boost.org/trac/boost/browser/trunk/boost/config/auto_link.hpp

Still confused, John.


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net