diff options
author | Daniel Jasper <djasper@google.com> | 2013-02-14 15:01:34 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2013-02-14 15:01:34 +0000 |
commit | e11095aff1db81f4bccb04b50df3f74b459dc81e (patch) | |
tree | 8d7da83db00f9a61de5fd470879d252b5c3a5b3e /clang/unittests | |
parent | 2efb59a71906710a1ab899bf15502b5689e282d3 (diff) | |
download | bcm5719-llvm-e11095aff1db81f4bccb04b50df3f74b459dc81e.tar.gz bcm5719-llvm-e11095aff1db81f4bccb04b50df3f74b459dc81e.zip |
Fix counting of parameters so that r175162 works as expected.
Before:
aaaaaaaaaaaaaaaaaaaaaaaa(aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa()
.aaaaaaaaaaaaaaaaa());
After:
aaaaaaaaaaaaaaaaaaaaaaaaa(
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa().aaaaaaaaaaaaaaaaa());
Not sure which of the formattings above is better, but we should not pick
one by accident.
llvm-svn: 175165
Diffstat (limited to 'clang/unittests')
-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 38f926a7e2d..9dab260512b 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -1453,6 +1453,10 @@ TEST_F(FormatTest, WrapsAtFunctionCallsIfNecessary) { "aaaaaaaaaaa->aaaaaaaaa(\n" " aaaaaaaaaaaaaaaaaaaaaaaaa,\n" " aaaaaaaaaaaaaaaaaa->aaaaaaaaa(aaaaaaaaaaaaaaaaaaaaaaaaa));\n"); + + verifyFormat( + "aaaaaaaaaaaaaaaaaaaaaaaaa(\n" + " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa().aaaaaaaaaaaaaaaaa());"); } TEST_F(FormatTest, WrapsTemplateDeclarations) { |