diff options
author | Nico Weber <nicolasweber@gmx.de> | 2013-01-10 00:42:07 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2013-01-10 00:42:07 +0000 |
commit | 880e538536d1a7597eb5805d67a08e3941577c7f (patch) | |
tree | 06f8cfb8e27233e685e847783b2b69c519fcbe0f /unittests/Format/FormatTest.cpp | |
parent | b530fa374a8d4d96e61bf1dae8f4a73f4b3d2436 (diff) |
Formatter: Remove unused @-formatting code.
@optional @property is put on two different unwrapped lines now, so this is no
longer necessary.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172024 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Format/FormatTest.cpp')
-rw-r--r-- | unittests/Format/FormatTest.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/unittests/Format/FormatTest.cpp b/unittests/Format/FormatTest.cpp index 9ed6b5f0f9..389c58c428 100644 --- a/unittests/Format/FormatTest.cpp +++ b/unittests/Format/FormatTest.cpp @@ -1347,6 +1347,8 @@ TEST_F(FormatTest, FormatObjCProtocol) { "- (void)optional;\n" "@required\n" "- (void)required;\n" + "@optional\n" + "@property(assign) int madProp;\n" "@end\n"); } |