add an extra assert

This commit is contained in:
Lee Thomason 2014-12-26 12:20:07 -08:00
parent eaddfd8768
commit 20806ce4e4
1 changed files with 1 additions and 0 deletions

View File

@ -533,6 +533,7 @@ class XMLUtil
{
public:
static const char* SkipWhiteSpace( const char* p ) {
TIXMLASSERT(p);
while( IsWhiteSpace(*p) ) {
++p;
}