@@ -103,8 +103,8 @@ New checks
103103- New :doc: `bugprone-unintended-char-ostream-output
104104 <clang-tidy/checks/bugprone/unintended-char-ostream-output>` check.
105105
106- Finds unintended character output from ``unsigned char `` and ``signed char `` to an
107- ``ostream ``.
106+ Finds unintended character output from ``unsigned char `` and ``signed char ``
107+ to an ``ostream ``.
108108
109109- New :doc: `readability-ambiguous-smartptr-reset-call
110110 <clang-tidy/checks/readability/ambiguous-smartptr-reset-call>` check.
@@ -148,14 +148,10 @@ Changes in existing checks
148148- Improved :doc: `misc-redundant-expression
149149 <clang-tidy/checks/misc/redundant-expression>` check by providing additional
150150 examples and fixing some macro related false positives.
151-
152- - Improved :doc: `modernize-use-ranges
153- <clang-tidy/checks/modernize/use-ranges>` check by updating suppress
154- warnings logic for ``nullptr `` in ``std::find ``.
155151
156- - Improved :doc: `modernize-use-std-numbers
157- <clang-tidy/checks/modernize/use-std-numbers >` check to support math
158- functions of different precisions .
152+ - Improved :doc: `misc-unused-using-decls
153+ <clang-tidy/checks/misc/unused-using-decls >` check by fixing false positives
154+ on `` operator"" `` with template parameters .
159155
160156- Improved :doc: `misc-use-internal-linkage
161157 <clang-tidy/checks/misc/use-internal-linkage>` check by fix false positives
@@ -165,18 +161,22 @@ Changes in existing checks
165161 <clang-tidy/checks/modernize/use-default-member-init>` check by matching
166162 ``constexpr `` and ``static `` values on member initialization.
167163
168- - Improved :doc: `performance/unnecessary-value-param
169- <clang-tidy/checks/performance/unnecessary-value-param>` check performance by
170- tolerating fix-it breaking compilation when functions is used as pointers
171- to avoid matching usage of functions within the current compilation unit.
164+ - Improved :doc: `modernize-use-ranges
165+ <clang-tidy/checks/modernize/use-ranges>` check by updating suppress
166+ warnings logic for ``nullptr `` in ``std::find ``.
167+
168+ - Improved :doc: `modernize-use-std-numbers
169+ <clang-tidy/checks/modernize/use-std-numbers>` check to support math
170+ functions of different precisions.
172171
173172- Improved :doc: `performance-move-const-arg
174- <clang-tidy/checks/performance/move-const-arg>` check by fixing false negatives
175- on ternary operators calling ``std::move ``.
173+ <clang-tidy/checks/performance/move-const-arg>` check by fixing false
174+ negatives on ternary operators calling ``std::move ``.
176175
177- - Improved :doc: `misc-unused-using-decls
178- <clang-tidy/checks/misc/unused-using-decls>` check by fixing false positives
179- on ``operator"" `` with template parameters.
176+ - Improved :doc: `performance-unnecessary-value-param
177+ <clang-tidy/checks/performance/unnecessary-value-param>` check performance by
178+ tolerating fix-it breaking compilation when functions is used as pointers
179+ to avoid matching usage of functions within the current compilation unit.
180180
181181Removed checks
182182^^^^^^^^^^^^^^
0 commit comments