]> granicus.if.org Git - clang/commitdiff
Revert "[ClangFormat] IndentWrappedFunctionNames should be true in the google ObjC...
authorBen Hamilton <benhamilton@google.com>
Thu, 14 Dec 2017 21:44:11 +0000 (21:44 +0000)
committerBen Hamilton <benhamilton@google.com>
Thu, 14 Dec 2017 21:44:11 +0000 (21:44 +0000)
This reverts commit 37e69667f748e1458b46483b7c1b8f9ba33eec44.

We're going to discuss its ramifications further before making a
conclusion.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@320747 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Format/Format.cpp
unittests/Format/FormatTestObjC.cpp

index 5ddc164459948bbc652734065d1ac2648d1ace87..217c6729ee39712082a5d123c683f684d15e860c 100644 (file)
@@ -732,7 +732,6 @@ FormatStyle getGoogleStyle(FormatStyle::LanguageKind Language) {
     GoogleStyle.SpacesInContainerLiterals = false;
   } else if (Language == FormatStyle::LK_ObjC) {
     GoogleStyle.ColumnLimit = 100;
-    GoogleStyle.IndentWrappedFunctionNames = true;
   }
 
   return GoogleStyle;
index 292466c0aa5d545ebb97d73ed07b06b34df0bd74..4220b44b4c47fa96ffbdf982f5af341713879e21 100644 (file)
@@ -382,9 +382,9 @@ TEST_F(FormatTestObjC, FormatObjCMethodDeclarations) {
                "            ofSize:(size_t)height\n"
                "                  :(size_t)width;");
 
-  Style = getGoogleStyle(FormatStyle::LK_ObjC);
   // Continuation indent width should win over aligning colons if the function
   // name is long.
+  Style = getGoogleStyle(FormatStyle::LK_ObjC);
   Style.ColumnLimit = 40;
   Style.IndentWrappedFunctionNames = true;
   verifyFormat("- (void)shortf:(GTMFoo *)theFoo\n"
@@ -395,10 +395,7 @@ TEST_F(FormatTestObjC, FormatObjCMethodDeclarations) {
   verifyFormat("- (void)shortf:(GTMFoo *)theFoo\n"
                "       aShortf:(NSRect)theRect {\n"
                "}");
-  // Wrapped method parameters should be indented.
-  verifyFormat("- (LongReturnTypeName)\n"
-               "    longParam:(ParamName)longParamName\n"
-               "        param:(paramName)paramName;");
+
   // Format pairs correctly.
   Style.ColumnLimit = 80;
   verifyFormat("- (void)drawRectOn:(id)surface\n"