diff options
| author | Daniel Jasper <djasper@google.com> | 2013-12-27 06:39:56 +0000 |
|---|---|---|
| committer | Daniel Jasper <djasper@google.com> | 2013-12-27 06:39:56 +0000 |
| commit | 126153ab87f71d2a15dd1779f8881a9ab80626c6 (patch) | |
| tree | ca5edbc758c41fa040b6b30c9c0a018ca04693bf /clang/unittests/Format/FormatTest.cpp | |
| parent | 87c3a0cfa60c55541a4c602b0967eb4267e466b2 (diff) | |
| download | bcm5719-llvm-126153ab87f71d2a15dd1779f8881a9ab80626c6.tar.gz bcm5719-llvm-126153ab87f71d2a15dd1779f8881a9ab80626c6.zip | |
clang-format: Break default arguments less eagerly.
Before:
void aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(int aaaaaaaaaaaaaaaaaaaaaaaaaaaa =
1);
After:
void aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(
int aaaaaaaaaaaaaaaaaaaaaaaaaaaa = 1);
llvm-svn: 198070
Diffstat (limited to 'clang/unittests/Format/FormatTest.cpp')
| -rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index 1ef701a6eb2..d721f0d09d7 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -3031,6 +3031,10 @@ TEST_F(FormatTest, BreaksFunctionDeclarations) { verifyGoogleFormat( "SomeLoooooooooooooooooooooooooooooogType operator<<(\n" " const SomeLooooooooogType &a, const SomeLooooooooogType &b);"); + verifyFormat("void aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(\n" + " int aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa = 1);"); + verifyFormat("aaaaaaaaaaaaaaaaaaaaaa\n" + "aaaaaaaaaaaaaaaaaaaaaaaaa(int aaaaaaaaaaaaaaaaaaaaaaaa = 1);"); } TEST_F(FormatTest, TrailingReturnType) { |

