Bug 128119
| Summary: | check-webkit-style suggests wrong brace placement on final override methods | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Blaze Burg <bburg> |
| Component: | Tools / Tests | Assignee: | Nobody <webkit-unassigned> |
| Status: | NEW | ||
| Severity: | Normal | ||
| Priority: | P2 | ||
| Version: | 528+ (Nightly build) | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
Blaze Burg
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 | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |