From 696a0ea588fd632d006e60c043a9498441b46347 Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Sat, 8 Oct 2011 04:14:12 +0000 Subject: Fixed 'conversion from pointer to same-sized integral type' warning for Intel C++ compiler in case anyone compiles with -Wp64 git-svn-id: http://pugixml.googlecode.com/svn/trunk@822 99668b35-9821-0410-8761-19e4c4f06640 --- src/pugixml.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/pugixml.cpp b/src/pugixml.cpp index 69e1b55..3680fc5 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -47,6 +47,7 @@ # pragma warning(disable: 177) // function was declared but never referenced # pragma warning(disable: 279) // controlling expression is constant # pragma warning(disable: 1478 1786) // function was declared "deprecated" +# pragma warning(disable: 1684) // conversion from pointer to same-sized integral type #endif #ifdef __BORLANDC__ -- cgit v1.2.3