[Webkit-unassigned] [Bug 125434] New: check-webkit-style thinks that the super-constructor initialization needs "Comma should be at the beginning of the line in a member initialization list."

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Dec 8 20:07:18 PST 2013


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

           Summary: check-webkit-style thinks that the super-constructor
                    initialization needs "Comma should be at the beginning
                    of the line in a member initialization list."
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Tools / Tests
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: fpizlo at apple.com


The following code:

class SSALoweringPhase : public Phase {
    static const bool verbose = false;

public:
    SSALoweringPhase(Graph& graph)
        : Phase(graph, "SSA lowering")
        , m_insertionSet(graph)
    {
    }

Causes check-webkit-style to claim that the ": Phase(graph, ..." line needs a comma.

-- 
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