Use the recently added BOOST_INTEL macro

[SVN r18511]
This commit is contained in:
Guillaume Melquiond
2003-05-23 11:53:49 +00:00
parent ce172f356b
commit 786733ac67

View File

@ -126,7 +126,7 @@ typedef int (UDT::*cmf)(int) const;
# ifdef BOOST_MSVC
# pragma warning(push)
# pragma warning(disable: 4181)
# elif defined(__ICL) || defined(__ICC)
# elif defined(BOOST_INTEL)
# pragma warning(push)
# pragma warning(disable: 21)
# endif
@ -141,7 +141,7 @@ typedef int& r_type;
typedef const r_type cr_type;
# ifdef BOOST_MSVC
# pragma warning(pop)
# elif defined(__ICL) || defined(__ICC)
# elif defined(BOOST_INTEL)
# pragma warning(pop)
# pragma warning(disable: 985) // identifier truncated in debug information
# endif