@@ -162,19 +162,15 @@ Changes in existing checks
162
162
<clang-tidy/checks/misc/definitions-in-headers>` check by rewording the
163
163
diagnostic note that suggests adding ``inline ``.
164
164
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
+
165
169
- Improved :doc: `modernize-avoid-c-arrays
166
170
<clang-tidy/checks/modernize/avoid-c-arrays>` check to suggest using ``std::span ``
167
171
as a replacement for parameters of incomplete C array type in C++20 and
168
172
``std::array `` or ``std::vector `` before C++20.
169
173
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
-
178
174
- Improved :doc: `modernize-min-max-use-initializer-list
179
175
<clang-tidy/checks/modernize/min-max-use-initializer-list>` check by fixing
180
176
a false positive when only an implicit conversion happened inside an
@@ -184,15 +180,14 @@ Changes in existing checks
184
180
<clang-tidy/checks/modernize/use-nullptr>` check to also recognize
185
181
``NULL ``/``__null `` (but not ``0 ``) when used with a templated type.
186
182
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
+
187
187
- Improved :doc: `modernize-use-std-print
188
188
<clang-tidy/checks/modernize/use-std-print>` check to support replacing
189
189
member function calls too.
190
190
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
-
196
191
- Improved :doc: `performance-avoid-endl
197
192
<clang-tidy/checks/performance/avoid-endl>` check to use ``std::endl `` as
198
193
placeholder when lexer cannot get source text.
@@ -201,6 +196,11 @@ Changes in existing checks
201
196
<clang-tidy/checks/readability/container-contains>` check to let it work on
202
197
any class that has a ``contains `` method.
203
198
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
+
204
204
- Improved :doc: `readability-implicit-bool-conversion
205
205
<clang-tidy/checks/readability/implicit-bool-conversion>` check
206
206
by adding the option `UseUpperCaseLiteralSuffix ` to select the
0 commit comments