diff options
author | Paul Hoad <mydeveloperday@gmail.com> | 2019-03-01 09:09:54 +0000 |
---|---|---|
committer | Paul Hoad <mydeveloperday@gmail.com> | 2019-03-01 09:09:54 +0000 |
commit | 5bcf99b4bda6f643db66d3ce64337eb0a6e32d2c (patch) | |
tree | bf3447158d8a97a1e8ee7d69f12715f42b45c113 /clang/lib/Format/UnwrappedLineFormatter.h | |
parent | fa61dddf5dc8cc35de6f814a04012b73a1afcb0e (diff) | |
download | bcm5719-llvm-5bcf99b4bda6f643db66d3ce64337eb0a6e32d2c.tar.gz bcm5719-llvm-5bcf99b4bda6f643db66d3ce64337eb0a6e32d2c.zip |
[clang-format] [NFC] clang-format the Format library
Previously revisions commited non-clang-formatted changes to the Format library, this means submitting any revision e.g. {D55170} can cause additional whitespace changes to potentially be included in a revision.
Commit a non functional change using latest build Windows clang-format r351376 with no other changes, to remove these differences
All FormatTests
pass [==========] 652 tests from 20 test cases ran.
llvm-svn: 355182
Diffstat (limited to 'clang/lib/Format/UnwrappedLineFormatter.h')
-rw-r--r-- | clang/lib/Format/UnwrappedLineFormatter.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/clang/lib/Format/UnwrappedLineFormatter.h b/clang/lib/Format/UnwrappedLineFormatter.h index a5110f9cbd0..a1ff1699958 100644 --- a/clang/lib/Format/UnwrappedLineFormatter.h +++ b/clang/lib/Format/UnwrappedLineFormatter.h @@ -39,10 +39,8 @@ public: /// Format the current block and return the penalty. unsigned format(const SmallVectorImpl<AnnotatedLine *> &Lines, bool DryRun = false, int AdditionalIndent = 0, - bool FixBadIndentation = false, - unsigned FirstStartColumn = 0, - unsigned NextStartColumn = 0, - unsigned LastStartColumn = 0); + bool FixBadIndentation = false, unsigned FirstStartColumn = 0, + unsigned NextStartColumn = 0, unsigned LastStartColumn = 0); private: /// Add a new line and the required indent before the first Token |