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:
parent
4878d937d9
commit
1f5be930d0
@ -49,9 +49,10 @@ using std::memcpy;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// uintptr_t
|
// uintptr_t
|
||||||
#if defined(__BORLANDC__) || defined(__MWERKS__) || defined(__DMC__) || defined(__GNUC__)
|
#if !defined(_MSC_VER)
|
||||||
# include <stdint.h>
|
# 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;
|
typedef size_t uintptr_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user