Boost logo

Boost :

From: Pavel Vozenilek (pavel_vozenilek_at_[hidden])
Date: 2004-06-28 12:13:00


"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


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk