Remove all warnings for Intel compiler on Linux as it is already done on Windows

[SVN r18432]
This commit is contained in:
Guillaume Melquiond
2003-05-18 11:12:24 +00:00
parent 4b7ec4a6ba
commit 323dde4110

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)
# 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