forked from mirror/openmw-tes3mp
silenced a completely pointless warning
This commit is contained in:
parent
e3d893b001
commit
21a8dc5ae7
1 changed files with 1 additions and 1 deletions
2
extern/oics/tinyxmlparser.cpp
vendored
2
extern/oics/tinyxmlparser.cpp
vendored
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue