
28 Jun
2004
28 Jun
'04
5:13 p.m.
"Joaquín Mª López Muñoz" wrote:
In config/intel.hpp, this defect macro is defined as follows
#if defined(__ICL) && (__ICL <= 710) # define BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS #endif
The macro should be defined *only* for Intel C++ 7.1 or older for Windows 32-bit.
I recommend: #if (defined __INTEL_COMPILER) && (defined _WIN32) && (__INTEL_COMPILER <= 710) ... #endif __ICL is supported only for legacy reasons (according to the docs). /Pavel