diff options
author | Jonas Toth <jonas.toth@gmail.com> | 2018-04-11 09:53:08 +0000 |
---|---|---|
committer | Jonas Toth <jonas.toth@gmail.com> | 2018-04-11 09:53:08 +0000 |
commit | 0f5f41df93a2fffd683398e8761c8b1897f762c7 (patch) | |
tree | 107d7b47e5723e10a23e01c72dd3d334a8539fc6 /clang-tools-extra/docs/ReleaseNotes.rst | |
parent | ac96d7c4b33a1bac52eeac27afc23e6671a2c44e (diff) | |
download | bcm5719-llvm-0f5f41df93a2fffd683398e8761c8b1897f762c7.tar.gz bcm5719-llvm-0f5f41df93a2fffd683398e8761c8b1897f762c7.zip |
[clang-tidy] add missing assignment operations in hicpp-signed-bitwise
This patch resolves the bug https://bugs.llvm.org/show_bug.cgi?id=36963.
- implement missing assignment operators for hicpp-signed-bitwise
- mention fix in release notes
Reviewers:
aaron.ballman, hokein, alexfh
Differential: https://reviews.llvm.org/D45414
llvm-svn: 329789
Diffstat (limited to 'clang-tools-extra/docs/ReleaseNotes.rst')
-rw-r--r-- | clang-tools-extra/docs/ReleaseNotes.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index 5185019e8b9..853b1da03e0 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -156,6 +156,9 @@ Improvements to clang-tidy <clang-tidy/checks/cppcoreguidelines-avoid-goto>` added. +- Adding the missing bitwise assignment operations to + :doc:`hicpp-signed-bitwise <clang-tidy/checks/hicpp-signed-bitwise>`. + - The 'misc-forwarding-reference-overload' check was renamed to :doc:`bugprone-forwarding-reference-overload <clang-tidy/checks/bugprone-forwarding-reference-overload>` |