Index: clang/lib/Format/ContinuationIndenter.cpp =================================================================== --- clang/lib/Format/ContinuationIndenter.cpp +++ clang/lib/Format/ContinuationIndenter.cpp @@ -810,8 +810,9 @@ // assignment without binary expression on the RHS. Also indent relative to // unary operators and the colons of constructor initializers. if (Style.BreakBeforeBinaryOperators == FormatStyle::BOS_None || -+ Style.BreakBeforeBinaryOperators == FormatStyle::BOS_NonAssignment) + Style.BreakBeforeBinaryOperators == FormatStyle::BOS_NonAssignment) { CurrentState.LastSpace = State.Column; + } } else if (Previous.is(TT_InheritanceColon)) { CurrentState.Indent = State.Column; CurrentState.LastSpace = State.Column;