diff options
Diffstat (limited to 'clang/lib/Format/ContinuationIndenter.cpp')
-rw-r--r-- | clang/lib/Format/ContinuationIndenter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Format/ContinuationIndenter.cpp b/clang/lib/Format/ContinuationIndenter.cpp index 9e84ea770fe..d48cb23da94 100644 --- a/clang/lib/Format/ContinuationIndenter.cpp +++ b/clang/lib/Format/ContinuationIndenter.cpp @@ -63,7 +63,8 @@ ContinuationIndenter::ContinuationIndenter(const FormatStyle &Style, BinPackInconclusiveFunctions(BinPackInconclusiveFunctions) {} LineState ContinuationIndenter::getInitialState(unsigned FirstIndent, - const AnnotatedLine *Line) { + const AnnotatedLine *Line, + bool DryRun) { LineState State; State.FirstIndent = FirstIndent; State.Column = FirstIndent; @@ -80,8 +81,7 @@ LineState ContinuationIndenter::getInitialState(unsigned FirstIndent, State.IgnoreStackForComparison = false; // The first token has already been indented and thus consumed. - moveStateToNextToken(State, /*DryRun=*/false, - /*Newline=*/false); + moveStateToNextToken(State, DryRun, /*Newline=*/false); return State; } |