diff options
author | Nico Weber <nicolasweber@gmx.de> | 2013-06-26 00:30:14 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2013-06-26 00:30:14 +0000 |
commit | 9096fc0dabb70e2718601ae966c722f13c20b7ea (patch) | |
tree | acf0f7b5c48b5dd2a6af0ef8bb1756dcd108d05c /clang/lib/Format/Format.cpp | |
parent | fa95cc916fe29b5746ccab7743eabd984ac9e0ef (diff) | |
download | bcm5719-llvm-9096fc0dabb70e2718601ae966c722f13c20b7ea.tar.gz bcm5719-llvm-9096fc0dabb70e2718601ae966c722f13c20b7ea.zip |
Run clang-format on lib/Format code after r184894. No other changes.
llvm-svn: 184896
Diffstat (limited to 'clang/lib/Format/Format.cpp')
-rw-r--r-- | clang/lib/Format/Format.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/lib/Format/Format.cpp b/clang/lib/Format/Format.cpp index a81f9d05330..ebcc26d33f0 100644 --- a/clang/lib/Format/Format.cpp +++ b/clang/lib/Format/Format.cpp @@ -266,8 +266,8 @@ public: State.Column = FirstIndent; State.NextToken = RootToken; State.Stack.push_back( - ParenState(FirstIndent, FirstIndent, /*AvoidBinPacking=*/ false, - /*NoLineBreak=*/ false)); + ParenState(FirstIndent, FirstIndent, /*AvoidBinPacking=*/false, + /*NoLineBreak=*/false)); State.LineContainsContinuedForLoopSection = false; State.ParenLevel = 0; State.StartOfStringLiteral = 0; @@ -276,7 +276,7 @@ public: State.IgnoreStackForComparison = false; // The first token has already been indented and thus consumed. - moveStateToNextToken(State, /*DryRun=*/ false); + moveStateToNextToken(State, /*DryRun=*/false); // If everything fits on a single line, just put it there. unsigned ColumnLimit = Style.ColumnLimit; @@ -955,8 +955,8 @@ private: // State already examined with lower penalty. continue; - addNextStateToQueue(Penalty, Node, /*NewLine=*/ false); - addNextStateToQueue(Penalty, Node, /*NewLine=*/ true); + addNextStateToQueue(Penalty, Node, /*NewLine=*/false); + addNextStateToQueue(Penalty, Node, /*NewLine=*/true); } if (Queue.empty()) |