diff options
author | Daniel Jasper <djasper@google.com> | 2012-12-24 16:51:15 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2012-12-24 16:51:15 +0000 |
commit | 8fbd96855c12cdbc0b8276d910d190cb7029cc5f (patch) | |
tree | 0d1dbd337b3e1e0a26b89710d0c3a4a22089bee3 /clang/lib/Format/UnwrappedLineParser.cpp | |
parent | 6d822720f0e4ee38ab558f12d12b193e775ba334 (diff) | |
download | bcm5719-llvm-8fbd96855c12cdbc0b8276d910d190cb7029cc5f.tar.gz bcm5719-llvm-8fbd96855c12cdbc0b8276d910d190cb7029cc5f.zip |
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.
llvm-svn: 171039
Diffstat (limited to 'clang/lib/Format/UnwrappedLineParser.cpp')
-rw-r--r-- | clang/lib/Format/UnwrappedLineParser.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/lib/Format/UnwrappedLineParser.cpp b/clang/lib/Format/UnwrappedLineParser.cpp index 7e91cb4351f..6c035b001c7 100644 --- a/clang/lib/Format/UnwrappedLineParser.cpp +++ b/clang/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() { |