From 323dde41104687d5b2137189093fb5121ddda16f Mon Sep 17 00:00:00 2001 From: Guillaume Melquiond Date: Sun, 18 May 2003 11:12:24 +0000 Subject: [PATCH] Remove all warnings for Intel compiler on Linux as it is already done on Windows [SVN r18432] --- test/test.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.hpp b/test/test.hpp index ddae8f2..fb33d3d 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) +# elif defined(__ICL) || defined(__ICC) # 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) +# elif defined(__ICL) || defined(__ICC) # pragma warning(pop) # pragma warning(disable: 985) // identifier truncated in debug information # endif