[clang-tools-extra] cc09b81 - [CTE][docs] Fix bad links in ReleaseNotes
Nathan James via cfe-commits
cfe-commits at lists.llvm.org
Thu Sep 1 04:11:08 PDT 2022
Author: Nathan James
Date: 2022-09-01T12:10:53+01:00
New Revision: cc09b81265e9543b9b78a2687e7b5c818a137a59
URL: https://github.com/llvm/llvm-project/commit/cc09b81265e9543b9b78a2687e7b5c818a137a59
DIFF: https://github.com/llvm/llvm-project/commit/cc09b81265e9543b9b78a2687e7b5c818a137a59.diff
LOG: [CTE][docs] Fix bad links in ReleaseNotes
Added:
Modified:
clang-tools-extra/docs/ReleaseNotes.rst
Removed:
################################################################################
diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst
index 9bd3a5fc799cf..55c8c341bff3a 100644
--- a/clang-tools-extra/docs/ReleaseNotes.rst
+++ b/clang-tools-extra/docs/ReleaseNotes.rst
@@ -130,7 +130,8 @@ Changes in existing checks
would be emitted for uninitialized members of an anonymous union despite
there being an initializer for one of the other members.
-- Improved `modernize-use-emplace <clang-tidy/checks/modernize/use-emplace.html>`_ check.
+- Improved :doc:`modernize-use-emplace <clang-tidy/checks/modernize/use-emplace>`
+ check.
The check now supports detecting inefficient invocations of ``push`` and
``push_front`` on STL-style containers and replacing them with ``emplace``
@@ -140,7 +141,8 @@ Changes in existing checks
``push_front`` on STL-style containers and replacing them with ``emplace_back``,
``emplace`` or ``emplace_front``.
-- Improved `modernize-use-equals-default <clang-tidy/checks/modernize/use-equals-default.html>`_ check.
+- Improved :doc:`modernize-use-equals-default <clang-tidy/checks/modernize/use-equals-default>`
+ check.
The check now skips unions since in this case a default constructor with empty body
is not equivalent to the explicitly defaulted one.
More information about the cfe-commits
mailing list