NEW 128119
check-webkit-style suggests wrong brace placement on final override methods
https://bugs.webkit.org/show_bug.cgi?id=128119
Summary check-webkit-style suggests wrong brace placement on final override methods
Blaze Burg
Reported 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?
Attachments
Note You need to log in before you can comment on or make changes to this bug.