From: Nico Weber Date: Thu, 10 Jan 2013 23:12:29 +0000 (+0000) Subject: Formatter: Remove a fixme, Jordy says @synthesize is good as is. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e2999cd4cfcf6447ca1f6e41d5707305e2d8dd0;p=clang Formatter: Remove a fixme, Jordy says @synthesize is good as is. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172141 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Format/FormatTest.cpp b/unittests/Format/FormatTest.cpp index 1d6cff152d..7740e10b14 100644 --- a/unittests/Format/FormatTest.cpp +++ b/unittests/Format/FormatTest.cpp @@ -1459,9 +1459,6 @@ TEST_F(FormatTest, ObjCSnippets) { " f();\n" "}"); - // FIXME: Some Apple code examples don't have spaces around '=' for - // @synthesize, decide if that's desired or not in LLVM style. Google style - // definitely wants spaces. verifyFormat("@synthesize dropArrowPosition = dropArrowPosition_;"); verifyGoogleFormat("@synthesize dropArrowPosition = dropArrowPosition_;");