Kaydet (Commit) 7de8936d authored tarafından Catalin Iacob's avatar Catalin Iacob Kaydeden (comit) Stephan Bergmann

WaE: Clang empty forloop body

Clang says:
stripped_scanner.ll:198:46: error: for loop has empty body [-Werror,-Wempty-body]
stripped_scanner.ll:198:46: note: put the semicolon on a separate line to silence this warning [-Wempty-body]
üst b8044cb8
......@@ -195,7 +195,8 @@ static double asciiToFloat(const sal_Char *s)
}
if (e > 0)
{
for (k = 1; e > 0; k *= 10, e--) ;
for (k = 1; e > 0; k *= 10, e--)
;
if (negexp)
d /= k;
else
......
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