Bug 128119 - check-webkit-style suggests wrong brace placement on final override methods
Summary: check-webkit-style suggests wrong brace placement on final override methods
Status: NEW
Alias: None
Product: WebKit
Classification: Unclassified
Component: Tools / Tests (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-02-03 12:59 PST by BJ Burg
Modified: 2014-02-03 12:59 PST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description BJ Burg 2014-02-03 12:59:05 PST
test case:


template<typename InputType>
class NondeterministicInput : public NondeterministicInputBase {
    virtual const AtomicString& type() const override final
    {
        return InputTraits<InputType>::type();
    }

    virtual InputQueue queue() const override final
    {
        return InputTraits<InputType>::queue();
    }
};


It suggests the opening brace of type() be on the same line. Maybe it's confused by override final?