================
@@ -3936,6 +3936,16 @@ struct FormatStyle {
   /// \version 3.7
   bool ObjCSpaceAfterProperty;
 
+  /// Add or remove a space between the '-'/'+' and the return type in
+  /// Objective-C method declarations. i.e
+  /// \code{.objc}
+  ///    false:                      true:
+  ///
+  ///    -(void)method      vs.      - (void)method
+  /// \endcode
+  /// \version 22
+  bool ObjCSpaceBeforeMethodDeclColon;
----------------
owenca wrote:

How about `ObjCSpaceAfterMethodDeclarationPrefix` instead?


https://github.com/llvm/llvm-project/pull/170579
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to