[clang-tools-extra] 471f034 - [clang-tidy][NFC] clean ReleaseNotes.rst (#130626)
via cfe-commits
cfe-commits at lists.llvm.org
Fri Mar 14 15:31:54 PDT 2025
Author: Baranov Victor
Date: 2025-03-14T23:31:50+01:00
New Revision: 471f034b1cdaaa7748719efb848684e5d2c6b923
URL: https://github.com/llvm/llvm-project/commit/471f034b1cdaaa7748719efb848684e5d2c6b923
DIFF: https://github.com/llvm/llvm-project/commit/471f034b1cdaaa7748719efb848684e5d2c6b923.diff
LOG: [clang-tidy][NFC] clean ReleaseNotes.rst (#130626)
1. Fixed ordering to be alphabetical
2. Made lines no more than 80 characters long
3. Fixed typos
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 d621a9c6d840b..0ad52f83fad85 100644
--- a/clang-tools-extra/docs/ReleaseNotes.rst
+++ b/clang-tools-extra/docs/ReleaseNotes.rst
@@ -103,8 +103,8 @@ New checks
- New :doc:`bugprone-unintended-char-ostream-output
<clang-tidy/checks/bugprone/unintended-char-ostream-output>` check.
- Finds unintended character output from ``unsigned char`` and ``signed char`` to an
- ``ostream``.
+ Finds unintended character output from ``unsigned char`` and ``signed char``
+ to an ``ostream``.
- New :doc:`readability-ambiguous-smartptr-reset-call
<clang-tidy/checks/readability/ambiguous-smartptr-reset-call>` check.
@@ -148,14 +148,10 @@ Changes in existing checks
- Improved :doc:`misc-redundant-expression
<clang-tidy/checks/misc/redundant-expression>` check by providing additional
examples and fixing some macro related false positives.
-
-- Improved :doc:`modernize-use-ranges
- <clang-tidy/checks/modernize/use-ranges>` check by updating suppress
- warnings logic for ``nullptr`` in ``std::find``.
-- Improved :doc:`modernize-use-std-numbers
- <clang-tidy/checks/modernize/use-std-numbers>` check to support math
- functions of
diff erent precisions.
+- Improved :doc:`misc-unused-using-decls
+ <clang-tidy/checks/misc/unused-using-decls>` check by fixing false positives
+ on ``operator""`` with template parameters.
- Improved :doc:`misc-use-internal-linkage
<clang-tidy/checks/misc/use-internal-linkage>` check by fix false positives
@@ -165,18 +161,22 @@ Changes in existing checks
<clang-tidy/checks/modernize/use-default-member-init>` check by matching
``constexpr`` and ``static`` values on member initialization.
-- Improved :doc:`performance/unnecessary-value-param
- <clang-tidy/checks/performance/unnecessary-value-param>` check performance by
- tolerating fix-it breaking compilation when functions is used as pointers
- to avoid matching usage of functions within the current compilation unit.
+- Improved :doc:`modernize-use-ranges
+ <clang-tidy/checks/modernize/use-ranges>` check by updating suppress
+ warnings logic for ``nullptr`` in ``std::find``.
+
+- Improved :doc:`modernize-use-std-numbers
+ <clang-tidy/checks/modernize/use-std-numbers>` check to support math
+ functions of
diff erent precisions.
- Improved :doc:`performance-move-const-arg
- <clang-tidy/checks/performance/move-const-arg>` check by fixing false negatives
- on ternary operators calling ``std::move``.
+ <clang-tidy/checks/performance/move-const-arg>` check by fixing false
+ negatives on ternary operators calling ``std::move``.
-- Improved :doc:`misc-unused-using-decls
- <clang-tidy/checks/misc/unused-using-decls>` check by fixing false positives
- on ``operator""`` with template parameters.
+- Improved :doc:`performance-unnecessary-value-param
+ <clang-tidy/checks/performance/unnecessary-value-param>` check performance by
+ tolerating fix-it breaking compilation when functions is used as pointers
+ to avoid matching usage of functions within the current compilation unit.
Removed checks
^^^^^^^^^^^^^^
More information about the cfe-commits
mailing list