diff options
author | Daniel Jasper <djasper@google.com> | 2015-05-19 11:06:33 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2015-05-19 11:06:33 +0000 |
commit | ed41f774fca65e8d9319e66b7128da48d85724fc (patch) | |
tree | 033f88f40e294e14b27f5285c27957e0582968b1 /clang/unittests/Format | |
parent | 5cdda674c6daa61a0f6c679d70bf878a112f2c8d (diff) | |
download | bcm5719-llvm-ed41f774fca65e8d9319e66b7128da48d85724fc.tar.gz bcm5719-llvm-ed41f774fca65e8d9319e66b7128da48d85724fc.zip |
clang-format: Fix regression caused by r237244.
Before:
[call aaaaaaaa.aaaaaaaa.aaaaaaaa.aaaaaaaa.aaaaaaaa.aaaaaaaa.aaaaaaaa.aaaaaaaa.
aaaaaaaa];
After:
[call aaaaaaaa.aaaaaaaa.aaaaaaaa.aaaaaaaa.aaaaaaaa.aaaaaaaa.aaaaaaaa.aaaaaaaa
.aaaaaaaa];
This merely papers over the fact that we aren't parsing ObjC method calls
correctly. Also, the indentation is weird.
llvm-svn: 237681
Diffstat (limited to 'clang/unittests/Format')
-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 ab09e0075d6..3903ac31e83 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -7340,6 +7340,9 @@ TEST_F(FormatTest, FormatObjCMethodExpr) { " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa];"); verifyFormat("[aaaaaaaaaaaaaaaaaaaaaaa.aaaaaaaa[aaaaaaaaaaaaaaaaaaaaa]\n" " aaaaaaaaaaaaaaaaaaaaaa];"); + verifyFormat("[call aaaaaaaa.aaaaaa.aaaaaaaa.aaaaaaaa.aaaaaaaa.aaaaaaaa\n" + " .aaaaaaaa];", // FIXME: Indentation seems off. + getLLVMStyleWithColumns(60)); verifyFormat( "scoped_nsobject<NSTextField> message(\n" |