From 44f8b4ce605129249ca26a86cb0889126cfeeed0 Mon Sep 17 00:00:00 2001 From: Mike Crowe Date: Wed, 2 Oct 2024 08:10:45 +0100 Subject: [PATCH] [clang-tidy] Fix check alphabetical ordering in release notes (#110428) --- clang-tools-extra/docs/ReleaseNotes.rst | 26 ++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index e34e296b5a096d0..702a8d2a3576b92 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -162,19 +162,15 @@ Changes in existing checks ` check by rewording the diagnostic note that suggests adding ``inline``. +- Improved :doc:`misc-unconventional-assign-operator + ` check to avoid + false positive for C++23 deducing this. + - Improved :doc:`modernize-avoid-c-arrays ` check to suggest using ``std::span`` as a replacement for parameters of incomplete C array type in C++20 and ``std::array`` or ``std::vector`` before C++20. -- Improved :doc:`modernize-use-std-format - ` check to support replacing - member function calls too. - -- Improved :doc:`misc-unconventional-assign-operator - ` check to avoid - false positive for C++23 deducing this. - - Improved :doc:`modernize-min-max-use-initializer-list ` check by fixing a false positive when only an implicit conversion happened inside an @@ -184,15 +180,14 @@ Changes in existing checks ` check to also recognize ``NULL``/``__null`` (but not ``0``) when used with a templated type. +- Improved :doc:`modernize-use-std-format + ` check to support replacing + member function calls too. + - Improved :doc:`modernize-use-std-print ` check to support replacing member function calls too. -- Improved :doc:`readability-enum-initial-value - ` check by only issuing - diagnostics for the definition of an ``enum``, and by fixing a typo in the - diagnostic. - - Improved :doc:`performance-avoid-endl ` check to use ``std::endl`` as placeholder when lexer cannot get source text. @@ -201,6 +196,11 @@ Changes in existing checks ` check to let it work on any class that has a ``contains`` method. +- Improved :doc:`readability-enum-initial-value + ` check by only issuing + diagnostics for the definition of an ``enum``, and by fixing a typo in the + diagnostic. + - Improved :doc:`readability-implicit-bool-conversion ` check by adding the option `UseUpperCaseLiteralSuffix` to select the