From 244217f8f1e0b61cc2de2ca1a2c6d2078358b642 Mon Sep 17 00:00:00 2001 From: jez Date: Thu, 9 Dec 2010 11:35:06 +0000 Subject: [PATCH] Silence 4244 loss of precision warning --- tests/SAX/filter_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/SAX/filter_test.cpp b/tests/SAX/filter_test.cpp index 6f3d7599..f66a59d7 100644 --- a/tests/SAX/filter_test.cpp +++ b/tests/SAX/filter_test.cpp @@ -1,5 +1,5 @@ #ifdef _MSC_VER -#pragma warning(disable: 4786 4250 4503) +#pragma warning(disable: 4786 4250 4503 4244) #endif #include "../CppUnit/TestRunner.hpp"