diff options
| -rw-r--r-- | clang-tools-extra/docs/ReleaseNotes.rst | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index 2a00c401351..0616a669d45 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -146,6 +146,9 @@ Improvements to clang-tidy Warns on construction of specific temporary objects in the Zircon kernel. +- Adding the missing bitwise assignment operations to + :doc:`hicpp-signed-bitwise <clang-tidy/checks/hicpp-signed-bitwise>`. + - New option `MinTypeNameLength` for :doc:`modernize-use-auto <clang-tidy/checks/modernize-use-auto>` check to limit the minimal length of type names to be replaced with ``auto``. Use to skip replacing short type @@ -153,18 +156,16 @@ Improvements to clang-tidy replace types with the name length >= 5 letters only (ex. ``double``, ``unsigned``). -- New alias :doc:`hicpp-avoid-goto - <clang-tidy/checks/hicpp-avoid-goto>` to :doc:`cppcoreguidelines-avoid-goto - <clang-tidy/checks/cppcoreguidelines-avoid-goto>` - added. - - Added `VariableThreshold` option to :doc:`readability-function-size <clang-tidy/checks/readability-function-size>` check - Flags functions that have more than a specified number of variables declared in the body. + Flags functions that have more than a specified number of variables declared + in the body. -- Adding the missing bitwise assignment operations to - :doc:`hicpp-signed-bitwise <clang-tidy/checks/hicpp-signed-bitwise>`. +- New alias :doc:`hicpp-avoid-goto + <clang-tidy/checks/hicpp-avoid-goto>` to :doc:`cppcoreguidelines-avoid-goto + <clang-tidy/checks/cppcoreguidelines-avoid-goto>` + added. - The 'misc-forwarding-reference-overload' check was renamed to :doc:`bugprone-forwarding-reference-overload <clang-tidy/checks/bugprone-forwarding-reference-overload>` |

