Kaydet (Commit) 52b84ea0 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror=int-in-bool-context (GCC 7)

Change-Id: Id97c3ec66c9c0f924951c44efa9f7dd95b184223
üst 23bf4227
......@@ -87,7 +87,7 @@ static inline OUString makeStrings(
if (0x80000000 & mask)
{
buf.appendAscii( *strings );
if (mask << 1) // more items following
if ((mask << 1) != 0) // more items following
buf.append( ',' );
}
mask = (mask << 1);
......
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