Skip to content
Snippets Groups Projects
Commit 4bb67db3 authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

STYLE: Adding () to remove warning

parent 39861db8
No related branches found
No related tags found
No related merge requests found
......@@ -354,7 +354,7 @@ const char* TiXmlBase::SkipWhiteSpace( const char* p, TiXmlEncoding encoding )
}
else
{
while ( *p && IsWhiteSpace( *p ) || *p == '\n' || *p =='\r' )
while ( (*p && IsWhiteSpace( *p )) || *p == '\n' || *p =='\r' )
++p;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment