diff options
author | Krasimir Georgiev <krasimir@google.com> | 2017-11-09 13:19:14 +0000 |
---|---|---|
committer | Krasimir Georgiev <krasimir@google.com> | 2017-11-09 13:19:14 +0000 |
commit | 0fcb580bb101bbf701bb22c61a9531e809cc8e3b (patch) | |
tree | 59774164b2f164111bdc4c9b3be40a6eb4591a7e /clang/lib/Format | |
parent | 3543f0a71224f8e50fcda0069752a95b068af05e (diff) | |
download | bcm5719-llvm-0fcb580bb101bbf701bb22c61a9531e809cc8e3b.tar.gz bcm5719-llvm-0fcb580bb101bbf701bb22c61a9531e809cc8e3b.zip |
[clang-format] Fix argument name comment, NFC
llvm-svn: 317783
Diffstat (limited to 'clang/lib/Format')
-rw-r--r-- | clang/lib/Format/ContinuationIndenter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Format/ContinuationIndenter.cpp b/clang/lib/Format/ContinuationIndenter.cpp index 4f624dd2fb4..6797ca22596 100644 --- a/clang/lib/Format/ContinuationIndenter.cpp +++ b/clang/lib/Format/ContinuationIndenter.cpp @@ -1324,7 +1324,7 @@ unsigned ContinuationIndenter::reformatRawStringLiteral( std::pair<tooling::Replacements, unsigned> Fixes = internal::reformat( RawStringStyle, RawText, {tooling::Range(0, RawText.size())}, FirstStartColumn, NextStartColumn, LastStartColumn, "<stdin>", - /*FormattingAttemptStatus=*/nullptr); + /*Status=*/nullptr); auto NewCode = applyAllReplacements(RawText, Fixes.first); tooling::Replacements NoFixes; |