@@ -162,19 +162,15 @@ Changes in existing checks
162162 <clang-tidy/checks/misc/definitions-in-headers>` check by rewording the
163163 diagnostic note that suggests adding ``inline ``.
164164
165+ - Improved :doc: `misc-unconventional-assign-operator
166+ <clang-tidy/checks/misc/unconventional-assign-operator>` check to avoid
167+ false positive for C++23 deducing this.
168+
165169- Improved :doc: `modernize-avoid-c-arrays
166170 <clang-tidy/checks/modernize/avoid-c-arrays>` check to suggest using ``std::span ``
167171 as a replacement for parameters of incomplete C array type in C++20 and
168172 ``std::array `` or ``std::vector `` before C++20.
169173
170- - Improved :doc: `modernize-use-std-format
171- <clang-tidy/checks/modernize/use-std-format>` check to support replacing
172- member function calls too.
173-
174- - Improved :doc: `misc-unconventional-assign-operator
175- <clang-tidy/checks/misc/unconventional-assign-operator>` check to avoid
176- false positive for C++23 deducing this.
177-
178174- Improved :doc: `modernize-min-max-use-initializer-list
179175 <clang-tidy/checks/modernize/min-max-use-initializer-list>` check by fixing
180176 a false positive when only an implicit conversion happened inside an
@@ -184,15 +180,14 @@ Changes in existing checks
184180 <clang-tidy/checks/modernize/use-nullptr>` check to also recognize
185181 ``NULL ``/``__null `` (but not ``0 ``) when used with a templated type.
186182
183+ - Improved :doc: `modernize-use-std-format
184+ <clang-tidy/checks/modernize/use-std-format>` check to support replacing
185+ member function calls too.
186+
187187- Improved :doc: `modernize-use-std-print
188188 <clang-tidy/checks/modernize/use-std-print>` check to support replacing
189189 member function calls too.
190190
191- - Improved :doc: `readability-enum-initial-value
192- <clang-tidy/checks/readability/enum-initial-value>` check by only issuing
193- diagnostics for the definition of an ``enum ``, and by fixing a typo in the
194- diagnostic.
195-
196191- Improved :doc: `performance-avoid-endl
197192 <clang-tidy/checks/performance/avoid-endl>` check to use ``std::endl `` as
198193 placeholder when lexer cannot get source text.
@@ -201,6 +196,11 @@ Changes in existing checks
201196 <clang-tidy/checks/readability/container-contains>` check to let it work on
202197 any class that has a ``contains `` method.
203198
199+ - Improved :doc: `readability-enum-initial-value
200+ <clang-tidy/checks/readability/enum-initial-value>` check by only issuing
201+ diagnostics for the definition of an ``enum ``, and by fixing a typo in the
202+ diagnostic.
203+
204204- Improved :doc: `readability-implicit-bool-conversion
205205 <clang-tidy/checks/readability/implicit-bool-conversion>` check
206206 by adding the option `UseUpperCaseLiteralSuffix ` to select the
0 commit comments