From 97825fb2c7b2d77c2c0611eb609eb2a77b8ac315 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 6 Mar 2002 01:33:46 +0000 Subject: [PATCH] Kill some Intel5 warnings [SVN r13108] --- include/boost/python/detail/config.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/boost/python/detail/config.hpp b/include/boost/python/detail/config.hpp index c488cb64..efd1500b 100644 --- a/include/boost/python/detail/config.hpp +++ b/include/boost/python/detail/config.hpp @@ -33,10 +33,15 @@ # define BOOST_MSVC6_OR_EARLIER 1 # endif -# pragma warning (disable : 4786) +# pragma warning (disable : 4786) + +# elif defined(__ICL) && __ICL < 600 // Intel C++ 5 + +# pragma warning(disable: 985) // identifier was truncated in debug information # endif + // Work around the broken library implementation/strict ansi checking on some // EDG-based compilers (e.g. alpha), which incorrectly warn that the result of // offsetof() is not an integer constant expression.