summaryrefslogtreecommitdiffstats
path: root/clang/lib/Format/Format.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/lib/Format/Format.cpp')
-rw-r--r--clang/lib/Format/Format.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/lib/Format/Format.cpp b/clang/lib/Format/Format.cpp
index 0b0092d31f8..e4004a649b0 100644
--- a/clang/lib/Format/Format.cpp
+++ b/clang/lib/Format/Format.cpp
@@ -271,9 +271,9 @@ public:
LineState State;
State.Column = FirstIndent;
State.NextToken = RootToken;
- State.Stack.push_back(
- ParenState(FirstIndent, FirstIndent, /*AvoidBinPacking=*/false,
- /*NoLineBreak=*/false));
+ State.Stack.push_back(ParenState(FirstIndent, FirstIndent,
+ /*AvoidBinPacking=*/false,
+ /*NoLineBreak=*/false));
State.LineContainsContinuedForLoopSection = false;
State.ParenLevel = 0;
State.StartOfStringLiteral = 0;
@@ -1289,9 +1289,9 @@ public:
!AnnotatedLines[i].First->Next)
AnnotatedLines[i].Level = NextNonCommentLine->Level;
else
- NextNonCommentLine =
- AnnotatedLines[i].First->isNot(tok::r_brace) ? &AnnotatedLines[i]
- : NULL;
+ NextNonCommentLine = AnnotatedLines[i].First->isNot(tok::r_brace)
+ ? &AnnotatedLines[i]
+ : NULL;
}
std::vector<int> IndentForLevel;
OpenPOWER on IntegriCloud