diff options
Diffstat (limited to 'clang/lib/Format/ContinuationIndenter.h')
-rw-r--r-- | clang/lib/Format/ContinuationIndenter.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang/lib/Format/ContinuationIndenter.h b/clang/lib/Format/ContinuationIndenter.h index ef698a7a520..608a827194f 100644 --- a/clang/lib/Format/ContinuationIndenter.h +++ b/clang/lib/Format/ContinuationIndenter.h @@ -84,13 +84,12 @@ private: unsigned breakProtrudingToken(const FormatToken &Current, LineState &State, bool DryRun); - /// \brief Adds a multiline string literal to the \p State. + /// \brief Adds a multiline token to the \p State. /// /// \returns Extra penalty for the first line of the literal: last line is /// handled in \c addNextStateToQueue, and the penalty for other lines doesn't /// matter, as we don't change them. - unsigned addMultilineStringLiteral(const FormatToken &Current, - LineState &State); + unsigned addMultilineToken(const FormatToken &Current, LineState &State); /// \brief Returns \c true if the next token starts a multiline string /// literal. |