================
@@ -922,8 +922,39 @@ struct FormatStyle {
     ///   };
     ///   int f();
     ///   int f() { return 1; }
+    ///   int LongName::
+    ///       AnotherLongName();
     /// \endcode
     RTBS_None,
+    /// Break after return type automatically.
+    /// This mode doesn't have the same inherent restriction on breaking after
+    /// short return types as ``RTBS_None`` and is solely based on
+    /// ``PenaltyReturnTypeOnItsOwnLine``.
+    /// \code
+    ///   class A {
+    ///     int f() { return 0; };
+    ///   };
+    ///   int f();
+    ///   int f() { return 1; }
+    ///   int
+    ///   LongName::AnotherLongName();
+    /// \endcode
+    RTBS_AllowShortType,
----------------
owenca wrote:

```suggestion
    RTBS_Automatic,
```

https://github.com/llvm/llvm-project/pull/78011
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to