$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2004-06-28 05:17:32
> #if (defined __INTEL_COMPILER) && (defined _WIN32) && (__INTEL_COMPILER <=
> 710)
> ...
> #endif
>
> __ICL is supported only for legacy reasons (according to the docs).
Sigh,
yes you're right, but I don't think __INTEL_VERSION is defined by the older
Intel compiler versions, so I'll switch to:
#if (BOOST_INTEL_CXX_VERSION <= 710) && defined(_WIN32)
# define BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS
#endif
John.