diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2009-01-06 00:02:42 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2009-01-06 00:02:42 +0000 |
commit | c507d9b10eaa3cd0d3065f4da8e0beb15a21d033 (patch) | |
tree | 1f95b23841c40fa2c42c1f46e6545b3925f0b606 /src/pugixpath.cpp | |
parent | 5a2fa3fe5079c8e917f7938602d3def7df71f210 (diff) |
Less header dependencies, some compilation fixes for Borland/Intel/MW compilers
git-svn-id: http://pugixml.googlecode.com/svn/trunk@103 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src/pugixpath.cpp')
-rw-r--r-- | src/pugixpath.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pugixpath.cpp b/src/pugixpath.cpp index 89d021a..310cac6 100644 --- a/src/pugixpath.cpp +++ b/src/pugixpath.cpp @@ -17,12 +17,13 @@ #include <algorithm>
-#include <cassert>
+#include <assert.h>
#include <stdio.h>
#include <math.h>
#include <float.h>
#include <ctype.h>
+#include <string.h>
#if defined(_MSC_VER)
# pragma warning(disable: 4127) // conditional expression is constant
|