$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Aleksey Gurtovoy (agurtovoy_at_[hidden])
Date: 2004-09-23 13:09:42
Jonathan Brandmeyer writes:
> What is the correct BOOST_WORKAROUND macro for this platform? I'm
> currently using
>
> #ifdef ((BOOST_WORKAROUND( BOOST_INTEL_CXX_VERSION, == 710)) &&
> defined(_WIN32))
>
> which does not seem to be enough.
This should work:
#if BOOST_WORKAROUND(BOOST_INTEL_WIN, == 710) \
&& BOOST_WORKAROUND(_MSC_VER, == 1200)
-- Aleksey Gurtovoy MetaCommunications Engineering