aboutsummaryrefslogtreecommitdiff
path: root/lib/Format/UnwrappedLineParser.cpp
diff options
context:
space:
mode:
authorDaniel Jasper <djasper@google.com>2012-12-24 16:51:15 +0000
committerDaniel Jasper <djasper@google.com>2012-12-24 16:51:15 +0000
commitd7610b8a744b2459ce2e66fea7d3a3d56ce23dba (patch)
tree5f92d056669b109a2b215fc7d146168a21b95720 /lib/Format/UnwrappedLineParser.cpp
parenta4974cf6ae618f04d5dd7fc45bc18bff41ca86bf (diff)
Let clang-format format itself.
Apply all formatting changes that clang-format would apply to its own source code. All choices seem to improve readability (or at least not make it worse). No functional changes. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171039 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Format/UnwrappedLineParser.cpp')
-rw-r--r--lib/Format/UnwrappedLineParser.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Format/UnwrappedLineParser.cpp b/lib/Format/UnwrappedLineParser.cpp
index 7e91cb4351..6c035b001c 100644
--- a/lib/Format/UnwrappedLineParser.cpp
+++ b/lib/Format/UnwrappedLineParser.cpp
@@ -25,9 +25,7 @@ namespace format {
UnwrappedLineParser::UnwrappedLineParser(const FormatStyle &Style,
FormatTokenSource &Tokens,
UnwrappedLineConsumer &Callback)
- : Style(Style),
- Tokens(Tokens),
- Callback(Callback) {
+ : Style(Style), Tokens(Tokens), Callback(Callback) {
}
bool UnwrappedLineParser::parse() {