mirror of
https://github.com/AxioDL/tinyxml2.git
synced 2025-05-14 19:31:23 +00:00
Fixed compiler warning for x64 builds.
This commit is contained in:
parent
d0a38c3a20
commit
1470edc595
@ -1684,7 +1684,7 @@ XMLError XMLDocument::Parse( const char* p, size_t len )
|
|||||||
return _errorID;
|
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 );
|
ParseDeep( _charBuffer+delta, 0 );
|
||||||
return _errorID;
|
return _errorID;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user