
28 Jun
2004
28 Jun
'04
10:17 a.m.
#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.