diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index 81becb0031a451..00cf38647b75fc 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -136,6 +136,12 @@ New check aliases Changes in existing checks ^^^^^^^^^^^^^^^^^^^^^^^^^^ +- Fixed nonsensical suggestion of :doc:`altera-struct-pack-align + ` check for empty structs. + +- Fixed some false positives in :doc:`bugprone-infinite-loop + ` involving dependent expressions. + - Fixed a crash in :doc:`bugprone-sizeof-expression ` when `sizeof(...)` is compared against a `__int128_t`. @@ -158,26 +164,20 @@ Changes in existing checks ` involving assignments in conditions. This fixes `Issue 35853 `_. -- Fixed a crash in :doc:`readability-const-return-type - ` when a pure virtual function - overrided has a const return type. Removed the fix for a virtual function. - -- Fixed a false positive in :doc:`readability-non-const-parameter - ` when the parameter is - referenced by an lvalue. - - Improved :doc:`performance-inefficient-vector-operation ` to work when the vector is a member of a structure. -- Fixed nonsensical suggestion of :doc:`altera-struct-pack-align - ` check for empty structs. +- Fixed a crash in :doc:`readability-const-return-type + ` when a pure virtual function + overrided has a const return type. Removed the fix for a virtual function. - Fixed incorrect suggestions for :doc:`readability-container-size-empty ` when smart pointers are involved. -- Fixed some false positives in :doc:`bugprone-infinite-loop - ` involving dependent expressions. +- Fixed a false positive in :doc:`readability-non-const-parameter + ` when the parameter is + referenced by an lvalue. Removed checks ^^^^^^^^^^^^^^