llvmbot wrote:

<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-clang-tools-extra

Author: mitchell (zeyi2)

<details>
<summary>Changes</summary>

There is a bug in `doc8` where `allow-long-titles` option incorrectly skipping 
non-title lines. So we have to disable it before they solve the problem and 
make a new release.

---
Full diff: https://github.com/llvm/llvm-project/pull/173519.diff


2 Files Affected:

- (modified) clang-tools-extra/clang-tidy/doc8.ini (+1-2) 
- (modified) 
clang-tools-extra/docs/clang-tidy/checks/misc/use-internal-linkage.rst (+1-1) 


``````````diff
diff --git a/clang-tools-extra/clang-tidy/doc8.ini 
b/clang-tools-extra/clang-tidy/doc8.ini
index 0e5b93511b967..f3670aaedec38 100644
--- a/clang-tools-extra/clang-tidy/doc8.ini
+++ b/clang-tools-extra/clang-tidy/doc8.ini
@@ -1,4 +1,3 @@
 [doc8]
 
-allow-long-titles = true
-ignore-path=clang-tools-extra/docs/clang-tidy/Integrations.rst
+ignore-path=clang-tools-extra/docs/clang-tidy/Integrations.rst,clang-tools-extra/docs/clang-tidy/checks/abseil/unchecked-statusor-access.rst
diff --git 
a/clang-tools-extra/docs/clang-tidy/checks/misc/use-internal-linkage.rst 
b/clang-tools-extra/docs/clang-tidy/checks/misc/use-internal-linkage.rst
index 8838837506a40..d87196ce664a8 100644
--- a/clang-tools-extra/docs/clang-tidy/checks/misc/use-internal-linkage.rst
+++ b/clang-tools-extra/docs/clang-tidy/checks/misc/use-internal-linkage.rst
@@ -17,7 +17,7 @@ Example:
   int v1; // can be marked as static
 
   void fn1() {} // can be marked as static
-  
+
   struct S1 {}; // can be moved into anonymous namespace
 
   namespace {

``````````

</details>


https://github.com/llvm/llvm-project/pull/173519
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to