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   

Description John Wilander 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]
Comment 1 John Wilander 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.
Comment 2 Daniel Bates 2017-09-05 16:01:45 PDT
I hit this bug with attachment #319945 [details] (bug #176388).