]> granicus.if.org Git - clang/commitdiff
[clang-format] Silence -Wdocumentation warnings
authorKrasimir Georgiev <krasimir@google.com>
Mon, 30 Jul 2018 12:22:41 +0000 (12:22 +0000)
committerKrasimir Georgiev <krasimir@google.com>
Mon, 30 Jul 2018 12:22:41 +0000 (12:22 +0000)
introduced in r338232

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@338245 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Format/BreakableToken.h

index a2a818f91148ef87451226082304c3156cc6503a..10e1801780214884de0a078f4da9aaa516873093 100644 (file)
@@ -139,12 +139,14 @@ public:
   /// Returns additional content indent required for the second line after the
   /// content at line \p LineIndex is broken.
   ///
-  /// For example, Javadoc @param annotations require and indent of 4 spaces and
-  /// in this example getContentIndex(1) returns 4.
-  /// /**
-  ///  * @param loooooooooooooong line
-  ///  *     continuation
-  ///  */
+  // (Next lines do not start with `///` since otherwise -Wdocumentation picks
+  // up the example annotations and generates warnings for them)
+  // For example, Javadoc @param annotations require and indent of 4 spaces and
+  // in this example getContentIndex(1) returns 4.
+  // /**
+  //  * @param loooooooooooooong line
+  //  *     continuation
+  //  */
   virtual unsigned getContentIndent(unsigned LineIndex) const {
     return 0;
   }