Bug 173859

Summary: check-webkit-style complains "multi-line control clauses should use brace" for single line if-statement followed by line with 8 space characters
Product: WebKit Reporter: John Wilander <wilander>
Component: Tools / TestsAssignee: Nobody <webkit-unassigned>
Status: NEW    
Severity: Normal CC: dbates, lforschler
Priority: P2    
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   

John Wilander
Reported 2017-06-26 20:32:07 PDT
This code ... if (sorted.size() < minimum) return { }; ... results in this checker error: Multi line control clauses should use braces. [whitespace/braces] [4]
Attachments
John Wilander
Comment 1 2017-06-27 09:57:36 PDT
I found out why it was complaining. Xcode had indented eight characters, like so: if (sorted.size() < minimum) return { }; // Eight space chars here confuses the checker.
Daniel Bates
Comment 2 2017-09-05 16:01:45 PDT
Note You need to log in before you can comment on or make changes to this bug.