Bug 125374 - check-webkit-style shouldn't check indent of #define directives within initializer lists
Summary: check-webkit-style shouldn't check indent of #define directives within initia...
Status: RESOLVED INVALID
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: 2013-12-06 17:39 PST by Brian Burg
Modified: 2013-12-08 12:29 PST (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Brian Burg 2013-12-06 17:39:45 PST
Test case where it spuriously complains about indentation:

RenderFileUploadControl::RenderFileUploadControl(HTMLInputElement& input, PassRef<RenderStyle> style)
    : RenderBlockFlow(input, std::move(style))
#if ENABLE(DRAG_SUPPORT)
    , m_canReceiveDroppedFiles(input.canReceiveDroppedFiles())
#endif
{
}
Comment 1 Brian Burg 2013-12-08 12:29:34 PST
It appears I was using an old version of the style checker, as I can't reproduce on my other machine and the relevant test cases in cpp_unittest.py seem to pass.