From 786733ac67496bcd50f6e461f04c68353a1a9265 Mon Sep 17 00:00:00 2001 From: Guillaume Melquiond Date: Fri, 23 May 2003 11:53:49 +0000 Subject: [PATCH] Use the recently added BOOST_INTEL macro [SVN r18511] --- test/test.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.hpp b/test/test.hpp index fb33d3d..9f293f8 100644 --- a/test/test.hpp +++ b/test/test.hpp @@ -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