[clang-tools-extra] b1cc59f - [clang-tidy][docs] Reorganise release notes
Nathan James via cfe-commits
cfe-commits at lists.llvm.org
Wed Jun 22 13:21:39 PDT 2022
Author: Nathan James
Date: 2022-06-22T21:21:24+01:00
New Revision: b1cc59fd3a9bad2fbd654011613909ffe90329b0
URL: https://github.com/llvm/llvm-project/commit/b1cc59fd3a9bad2fbd654011613909ffe90329b0
DIFF: https://github.com/llvm/llvm-project/commit/b1cc59fd3a9bad2fbd654011613909ffe90329b0.diff
LOG: [clang-tidy][docs] Reorganise release notes
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 ec7b44405310..b1a5d110a921 100644
--- a/clang-tools-extra/docs/ReleaseNotes.rst
+++ b/clang-tools-extra/docs/ReleaseNotes.rst
@@ -110,9 +110,6 @@ Improvements to clang-tidy
from suppressing diagnostics associated with macro arguments. This fixes
`Issue 55134 <https://github.com/llvm/llvm-project/issues/55134>`_.
-- Invalid parameters are no longer treated as being implicitly unused for the
- `-misc-unused-parameters` check. This fixes `Issue 56152 <https://github.com/llvm/llvm-project/issues/56152>`_.
-
New checks
^^^^^^^^^^
@@ -182,13 +179,18 @@ Changes in existing checks
<clang-tidy/checks/llvmlibc/callee-namespace>` when executing for C++ code
that contain calls to advanced constructs, e.g. overloaded operators.
-- Fixed a false positive in :doc:`misc-redundant-expression
- <clang-tidy/checks/misc/redundant-expression>` involving overloaded
- comparison operators.
+- Fixed false positives in :doc:`misc-redundant-expression
+ <clang-tidy/checks/misc/redundant-expression>`:
+
+ - Fixed a false positive involving overloaded comparison operators.
+
+ - Fixed a false positive involving assignments in
+ conditions. This fixes `Issue 35853 <https://github.com/llvm/llvm-project/issues/35853>`_.
-- Fixed a false positive in :doc:`misc-redundant-expression
- <clang-tidy/checks/misc/redundant-expression>` involving assignments in
- conditions. This fixes `Issue 35853 <https://github.com/llvm/llvm-project/issues/35853>`_.
+- Fixed a false positive in :doc:`misc-unused-parameters
+ <clang-tidy/checks/misc/unused-parameters>`
+ where invalid parameters were implicitly being treated as being unused.
+ This fixes `Issue 56152 <https://github.com/llvm/llvm-project/issues/56152>`_.
- Fixed a false positive in :doc:`modernize-deprecated-headers
<clang-tidy/checks/modernize/deprecated-headers>` involving including
More information about the cfe-commits
mailing list