From 1f5be930d03c3704a524dad31464220ece1229e4 Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Thu, 20 May 2010 20:18:59 +0000 Subject: Assume that all compilers (except Microsoft) have stdint.h git-svn-id: http://pugixml.googlecode.com/svn/trunk@437 99668b35-9821-0410-8761-19e4c4f06640 --- src/pugixml.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/pugixml.cpp') diff --git a/src/pugixml.cpp b/src/pugixml.cpp index f96f7a7..04fb1db 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -49,9 +49,10 @@ using std::memcpy; #endif // uintptr_t -#if defined(__BORLANDC__) || defined(__MWERKS__) || defined(__DMC__) || defined(__GNUC__) +#if !defined(_MSC_VER) # include -#elif defined(_MSC_VER) && _MSC_VER < 1300 +#elif _MSC_VER < 1300 +// No native uintptr_t in MSVC6 typedef size_t uintptr_t; #endif -- cgit v1.2.3