From 71d516c6f5137c8b2598cd7707ec0859d0d82849 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 27 Sep 2010 12:23:46 +0000 Subject: [PATCH] Suppress some Intel C++ warnings. [SVN r65628] --- test/common_type_test.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/common_type_test.cpp b/test/common_type_test.cpp index aa22026..22a0fd0 100644 --- a/test/common_type_test.cpp +++ b/test/common_type_test.cpp @@ -14,6 +14,10 @@ #endif #include +#ifdef BOOST_INTEL +#pragma warning(disable: 304 383) +#endif + struct C1 {}; struct C2 {};