[clang-tools-extra] 2870303 - [clang-tidy][NFC] Fixes in release notes

Piotr Zegar via cfe-commits cfe-commits at lists.llvm.org
Wed Jul 19 13:45:34 PDT 2023


Author: Piotr Zegar
Date: 2023-07-19T20:45:17Z
New Revision: 287030384c90d705fbdb2112cfaf39d1497d23f5

URL: https://github.com/llvm/llvm-project/commit/287030384c90d705fbdb2112cfaf39d1497d23f5
DIFF: https://github.com/llvm/llvm-project/commit/287030384c90d705fbdb2112cfaf39d1497d23f5.diff

LOG: [clang-tidy][NFC] Fixes in release notes

Correct link in release notes and format of some notes.

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 1b8f3bf113c01c..1a0dbf0a7db8a6 100644
--- a/clang-tools-extra/docs/ReleaseNotes.rst
+++ b/clang-tools-extra/docs/ReleaseNotes.rst
@@ -397,7 +397,7 @@ Changes in existing checks
   with attributes and to support nested inline namespace introduced in c++20.
 
 - Fixed an issue in `modernize-loop-convert
-  <clang-tidy/checks/modernize/modernize-loop-convert>` generating wrong code
+  <clang-tidy/checks/modernize/loop-convert>` generating wrong code
   when using structured bindings.
 
 - In :doc:`modernize-use-default-member-init
@@ -424,12 +424,9 @@ Changes in existing checks
   special member functions are not available.
 
 - Improved :doc:`performance-no-automatic-move
-  <clang-tidy/checks/performance/no-automatic-move>`: warn on ``const &&``
-  constructors.
-
-- Fixed a false positive in :doc:`performance-no-automatic-move
-  <clang-tidy/checks/performance/no-automatic-move>` when warning would be
-  emitted for a const local variable to which NRVO is applied.
+  <clang-tidy/checks/performance/no-automatic-move>` check to warn on
+  ``const &&`` constructors and ignore ``const`` local variable to which NRVO
+  is applied.
 
 - Fixed an issue in the :doc:`performance-noexcept-move-constructor
   <clang-tidy/checks/performance/noexcept-move-constructor>` checker that was causing


        


More information about the cfe-commits mailing list