Fix Wdocumentation warning by consistently using '///' comment blocks. NFCI.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Tue, 20 Apr 2021 10:41:04 +0000 (11:41 +0100)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Tue, 20 Apr 2021 11:37:00 +0000 (12:37 +0100)
clang/include/clang/Format/Format.h

index 104b934..98d2f16 100644 (file)
@@ -1918,19 +1918,19 @@ struct FormatStyle {
     /// \code
     ///   struct foo {
     ///   private:
-    //
+    ///
     ///     int i;
     ///   protected:
-    //
+    ///
     ///     int j;
     ///     /* comment */
     ///   public:
-    //
+    ///
     ///     foo() {}
     ///   private:
     ///
     ///   protected:
-    //
+    ///
     ///   };
     /// \endcode
     ELAAMS_Always,