diff options
author | Daniel Jasper <djasper@google.com> | 2013-07-08 14:34:09 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2013-07-08 14:34:09 +0000 |
commit | 3ac9b9e258cfd7134fa5243c570aad7804c39ba8 (patch) | |
tree | aebc05b11379a86aa4991efeeb462b6f9e30695d /clang/lib/Format/Format.cpp | |
parent | ee7539a387eb71f76eb4ea241ad1ce2b6078db89 (diff) | |
download | bcm5719-llvm-3ac9b9e258cfd7134fa5243c570aad7804c39ba8.tar.gz bcm5719-llvm-3ac9b9e258cfd7134fa5243c570aad7804c39ba8.zip |
Reformat clang-format's source files after r185822 and others.
llvm-svn: 185823
Diffstat (limited to 'clang/lib/Format/Format.cpp')
-rw-r--r-- | clang/lib/Format/Format.cpp | 12 |
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; |