
John Maddock wrote:
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 mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
1>example - 0 error(s), 0 warning(s) ========== Rebuild All: 1 succeeded, 0 failed, 0 skipped ========== Thanks John, I appreciate the help, now on to QuantLib!