commit | 1470edc59566befcd90aeef573f3ce4c14a84d1b | [log] [tgz] |
---|---|---|
author | Thomas Roß <pzycho1980@gmail.com> | Fri May 10 15:44:12 2013 +0200 |
committer | Thomas Roß <pzycho1980@gmail.com> | Fri May 10 15:44:12 2013 +0200 |
tree | ddf6b436e41b73784edb57ea487c48f106498a4f | |
parent | d0a38c3a206fe6efba605ff60e82683e64eccf89 [diff] [blame] |
Fixed compiler warning for x64 builds.
diff --git a/tinyxml2.cpp b/tinyxml2.cpp index 510de38..a6ec20a 100755 --- a/tinyxml2.cpp +++ b/tinyxml2.cpp
@@ -1684,7 +1684,7 @@ return _errorID; } - int delta = p - start; // skip initial whitespace, BOM, etc. + ptrdiff_t delta = p - start; // skip initial whitespace, BOM, etc. ParseDeep( _charBuffer+delta, 0 ); return _errorID; }