summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-05-12 21:36:22 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-05-12 21:36:22 +0000
commit697a5de5db52bb7b6f117090ba5d1d04b3b9eaf5 (patch)
treeaae5f8528a6d7a501b719f7df7c471e5f31a2768 /src
parent937f5613a17f9da568b68d01fa770d9e5592c182 (diff)
Fixed GCC build
git-svn-id: http://pugixml.googlecode.com/svn/trunk@419 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src')
-rw-r--r--src/pugixml.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp
index 364bee4..f96f7a7 100644
--- a/src/pugixml.cpp
+++ b/src/pugixml.cpp
@@ -49,7 +49,7 @@ using std::memcpy;
#endif
// uintptr_t
-#if defined(__BORLANDC__) || defined(__MWERKS__) || defined(__DMC__)
+#if defined(__BORLANDC__) || defined(__MWERKS__) || defined(__DMC__) || defined(__GNUC__)
# include <stdint.h>
#elif defined(_MSC_VER) && _MSC_VER < 1300
typedef size_t uintptr_t;