================
@@ -5057,6 +5057,21 @@ struct FormatStyle {
   /// \version 11
   std::vector<std::string> WhitespaceSensitiveMacros;
 
+  /// Insert a newline at the begging and at the end of namespace definition
+  /// \code
+  ///   false:                           vs.      true:
+  ///
+  ///   namespace a {                             namespace a {
+  ///   namespace b {                             namespace b {
+  ///     function();
+  ///   }                                         function();
+  ///   }
+  ///                                             }
+  ///                                             }
+  /// \endcode
+  /// \version 19
+  bool WrapNamespaceBodyWithNewlines;
----------------
HazardyKnusperkeks wrote:

> Could you confirm my guess about behavior of this options?
> 
>     * Always: fixes all namespaces with 1 additional newline at the begging 
> and at the end of namespace

Sets a minimum of empty lines to 1 (still has to obey max empty lines, if there 
were more than 1).

>     * Never:   removes all newlines at the begging and at the end of namespace

Yes.

>     * Leave:   doesn't affect this aspect of user code(uses other options for 
> formatting like 'MaxEmptyLinesToKeep')

Yes.


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

Reply via email to