Kaydet (Commit) 12873f77 authored tarafından Caolán McNamara's avatar Caolán McNamara

WaE: simple-minded windows compiler warning

üst 8c298839
......@@ -60,9 +60,8 @@ DT_TextToken::DisplayAt( DocumentationDisplay & o_rDisplay ) const
bool
DT_TextToken::IsWhiteOnly() const
{
for ( const char * it = sText.c_str();
static_cast<UINT8>(*it) > 32;
++it )
const char *it = sText.c_str();
while (static_cast<UINT8>(*it++) > 32)
{
return false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment