From 6bd91d9abe188d2b69ed4dc391ad42b0d6fc6844 Mon Sep 17 00:00:00 2001 From: jez Date: Thu, 9 Dec 2010 10:54:46 +0000 Subject: [PATCH] Silence warning 4244 - loss of precision --- tests/DOM/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/DOM/main.cpp b/tests/DOM/main.cpp index 051fd4df..338d2499 100644 --- a/tests/DOM/main.cpp +++ b/tests/DOM/main.cpp @@ -1,5 +1,5 @@ #ifdef _MSC_VER -#pragma warning(disable: 4786 4250 4503) +#pragma warning(disable: 4786 4250 4503 4244) #endif #include "dom_test_suite.hpp"