[clang-tools-extra] r354266 - [clang-tidy] Fix links in docs.

Alexander Kornienko via cfe-commits cfe-commits at lists.llvm.org
Mon Feb 18 04:50:35 PST 2019


Author: alexfh
Date: Mon Feb 18 04:50:35 2019
New Revision: 354266

URL: http://llvm.org/viewvc/llvm-project?rev=354266&view=rev
Log:
[clang-tidy] Fix links in docs.

Modified:
    clang-tools-extra/trunk/docs/clang-tidy/index.rst

Modified: clang-tools-extra/trunk/docs/clang-tidy/index.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/index.rst?rev=354266&r1=354265&r2=354266&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/index.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/index.rst Mon Feb 18 04:50:35 2019
@@ -264,13 +264,14 @@ Suppressing Undesired Diagnostics
 adhere to a coding standard, or is otherwise problematic in some way.  However,
 if the code is known to be correct, it may be useful to silence the warning.
 Some clang-tidy checks provide a check-specific way to silence the diagnostics,
-e.g.  `bugprone-use-after-move <checks/bugprone-use-after-move>`_ can be
+e.g.  `bugprone-use-after-move <checks/bugprone-use-after-move.html>`_ can be
 silenced by re-initializing the variable after it has been moved out,
 `bugprone-string-integer-assignment
-<checks/bugprone-string-integer-assignment>`_ can be suppressed by explicitly
-casting the integer to ``char``, `readability-implicit-bool-conversion
-<checks/readability-implicit-bool-conversion>`_ can also be suppressed by using
-explicit casts, etc.
+<checks/bugprone-string-integer-assignment.html>`_ can be suppressed by
+explicitly casting the integer to ``char``,
+`readability-implicit-bool-conversion
+<checks/readability-implicit-bool-conversion.html>`_ can also be suppressed by
+using explicit casts, etc.
 
 If a specific suppression mechanism is not available for a certain warning, or
 its use is not desired for some reason, :program:`clang-tidy` has a generic




More information about the cfe-commits mailing list