diff options
author | Daniel Jasper <djasper@google.com> | 2013-01-23 20:41:06 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2013-01-23 20:41:06 +0000 |
commit | 39e2738c8b846a32677bb23baed6367692cf45ac (patch) | |
tree | 6a3ab2a3deab586cc06be777e95476982df1b922 /clang/unittests/Format/FormatTest.cpp | |
parent | d9c3dabbba5f96b929a3367d7b9701a743d454ea (diff) | |
download | bcm5719-llvm-39e2738c8b846a32677bb23baed6367692cf45ac.tar.gz bcm5719-llvm-39e2738c8b846a32677bb23baed6367692cf45ac.zip |
Add extra indent for nested calls inside if's.
Before:
if (aaaaaaaaaa(
aaaaaaaaaa)) {}
After:
if (aaaaaaaaaa(
aaaaaaaaaa)) {}
llvm-svn: 173290
Diffstat (limited to 'clang/unittests/Format/FormatTest.cpp')
-rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index a588dbabece..d8a6ddcb688 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -928,6 +928,9 @@ TEST_F(FormatTest, BreaksDesireably) { verifyFormat("if (aaaaaaaaaaaaaaaaaaa(aaaaaaaaaaaaaaa) ||\n" " aaaaaaaaaaaaaaaaaaa(aaaaaaaaaaaaaaa) ||\n" " aaaaaaaaaaaaaaaaaaa(aaaaaaaaaaaaaaa)) {\n}"); + verifyFormat("if (aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(\n" + " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa)) {\n" + "}"); verifyFormat( "aaaaaaaaaaaaaaaaaaaaa(aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,\n" |