[Webkit-unassigned] [Bug 128119] New: check-webkit-style suggests wrong brace placement on final override methods

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Feb 3 13:01:44 PST 2014


https://bugs.webkit.org/show_bug.cgi?id=128119

           Summary: check-webkit-style suggests wrong brace placement on
                    final override methods
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Tools / Tests
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: bburg at apple.com


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?

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list