@@ -223,13 +223,11 @@ void BreakableStringLiteral::insertBreak(unsigned LineIndex,
223
223
224
224
BreakableComment::BreakableComment (const FormatToken &Token,
225
225
unsigned StartColumn,
226
- unsigned OriginalStartColumn,
227
- bool FirstInLine, bool InPPDirective,
226
+ bool InPPDirective,
228
227
encoding::Encoding Encoding,
229
228
const FormatStyle &Style )
230
229
: BreakableToken(Token, InPPDirective, Encoding, Style ),
231
- StartColumn(StartColumn), OriginalStartColumn(OriginalStartColumn),
232
- FirstInLine(FirstInLine) {}
230
+ StartColumn(StartColumn) {}
233
231
234
232
unsigned BreakableComment::getLineCount () const { return Lines.size (); }
235
233
@@ -325,8 +323,7 @@ BreakableBlockComment::BreakableBlockComment(
325
323
const FormatToken &Token, unsigned StartColumn,
326
324
unsigned OriginalStartColumn, bool FirstInLine, bool InPPDirective,
327
325
encoding::Encoding Encoding, const FormatStyle &Style )
328
- : BreakableComment(Token, StartColumn, OriginalStartColumn, FirstInLine,
329
- InPPDirective, Encoding, Style ) {
326
+ : BreakableComment(Token, StartColumn, InPPDirective, Encoding, Style ) {
330
327
assert (Tok.is (TT_BlockComment) &&
331
328
" block comment section must start with a block comment" );
332
329
@@ -664,8 +661,7 @@ BreakableLineCommentSection::BreakableLineCommentSection(
664
661
const FormatToken &Token, unsigned StartColumn,
665
662
unsigned OriginalStartColumn, bool FirstInLine, bool InPPDirective,
666
663
encoding::Encoding Encoding, const FormatStyle &Style )
667
- : BreakableComment(Token, StartColumn, OriginalStartColumn, FirstInLine,
668
- InPPDirective, Encoding, Style ) {
664
+ : BreakableComment(Token, StartColumn, InPPDirective, Encoding, Style ) {
669
665
assert (Tok.is (TT_LineComment) &&
670
666
" line comment section must start with a line comment" );
671
667
FormatToken *LineTok = nullptr ;
0 commit comments