Assume that all compilers (except Microsoft) have stdint.h

git-svn-id: http://pugixml.googlecode.com/svn/trunk@437 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
arseny.kapoulkine 2010-05-20 20:18:59 +00:00
parent 4878d937d9
commit 1f5be930d0

View File

@ -49,9 +49,10 @@ using std::memcpy;
#endif
// uintptr_t
#if defined(__BORLANDC__) || defined(__MWERKS__) || defined(__DMC__) || defined(__GNUC__)
#if !defined(_MSC_VER)
# include <stdint.h>
#elif defined(_MSC_VER) && _MSC_VER < 1300
#elif _MSC_VER < 1300
// No native uintptr_t in MSVC6
typedef size_t uintptr_t;
#endif