[PATCH] D133087: [clang-format][NFC][Docs] fix wrong example of warping class definitions

passw_passw via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Sep 1 16:20:45 PDT 2022


Passw updated this revision to Diff 457438.
Passw added a comment.

modify Foramt.h and generate ClangFormatStyleOptions.rst by running dump_format_style.py


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D133087/new/

https://reviews.llvm.org/D133087

Files:
  clang/docs/ClangFormatStyleOptions.rst
  clang/include/clang/Format/Format.h


Index: clang/include/clang/Format/Format.h
===================================================================
--- clang/include/clang/Format/Format.h
+++ clang/include/clang/Format/Format.h
@@ -1423,11 +1423,11 @@
     /// Wrap class definitions.
     /// \code
     ///   true:
-    ///   class foo {};
-    ///
-    ///   false:
     ///   class foo
     ///   {};
+    ///
+    ///   false:
+    ///   class foo {};
     /// \endcode
     bool AfterClass;
 
Index: clang/docs/ClangFormatStyleOptions.rst
===================================================================
--- clang/docs/ClangFormatStyleOptions.rst
+++ clang/docs/ClangFormatStyleOptions.rst
@@ -1439,12 +1439,12 @@
     .. code-block:: c++
 
       true:
-      class foo {};
-
-      false:
       class foo
       {};
 
+      false:
+      class foo {};
+
   * ``BraceWrappingAfterControlStatementStyle AfterControlStatement``
     Wrap control statements (``if``/``for``/``while``/``switch``/..).
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D133087.457438.patch
Type: text/x-patch
Size: 974 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220901/1b5c1258/attachment.bin>


More information about the cfe-commits mailing list