silenced a completely pointless warning

This commit is contained in:
Marc Zinnschlag 2012-09-06 11:43:04 +02:00
parent e3d893b001
commit 21a8dc5ae7

View file

@ -354,7 +354,7 @@ const char* TiXmlBase::SkipWhiteSpace( const char* p, TiXmlEncoding encoding )
} }
else else
{ {
while ( *p && IsWhiteSpace( *p ) || *p == '\n' || *p =='\r' ) while ( (*p && IsWhiteSpace( *p )) || *p == '\n' || *p =='\r' )
++p; ++p;
} }