clang-format continuation indent of member function call arguments
Summary The clang-format tool is used to format C++ code according to a set of predefined rules. One of the features of clang-format is the ContinuationIndentWidth, which specifies the indentation width for continuation lines. However, when it comes to member function call arguments, the ContinuationIndentWidth is applied relative to the member, not the previous line. … Read more