$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2004-04-13 07:34:24
> OK, silly me: it looks like we *do* set that macro for intel-win32.
>
> Since the latest version of that compiler is version 8, why are we
> writing:
>
> #if (BOOST_INTEL_CXX_VERSION <= 800) || !defined(BOOST_STRICT_CONFIG)
>
> instead of
>
> #if BOOST_WORKAROUND(BOOST_INTEL_CXX_VERSION, BOOST_TESTED_AT(800))
>
> ??
Because the config system normally gets parsed before
boost/detail/workaround.hpp can be included?
John.