$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: pbristow_at_[hidden]
Date: 2007-09-20 09:24:34
Author: pbristow
Date: 2007-09-20 09:24:33 EDT (Thu, 20 Sep 2007)
New Revision: 39411
URL: http://svn.boost.org/trac/boost/changeset/39411
Log:
Yet more error suppression
Text files modified: 
   sandbox/math_toolkit/libs/math/test/test_hermite.cpp |     2 ++                                      
   1 files changed, 2 insertions(+), 0 deletions(-)
Modified: sandbox/math_toolkit/libs/math/test/test_hermite.cpp
==============================================================================
--- sandbox/math_toolkit/libs/math/test/test_hermite.cpp	(original)
+++ sandbox/math_toolkit/libs/math/test/test_hermite.cpp	2007-09-20 09:24:33 EDT (Thu, 20 Sep 2007)
@@ -6,6 +6,8 @@
 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 
 #ifdef _MSC_VER
+#  pragma warning(disable : 4127) // conditional expression is constant
+#  pragma warning(disable : 4512) // assignment operator could not be generated
 #  pragma warning(disable : 4756) // overflow in constant arithmetic
 // Constants are too big for float case, but this doesn't matter for test.
 #endif