diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2016-09-14 17:41:51 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2016-09-14 17:41:51 +0000 |
commit | a8c46ce608838890a20555045c8409afdc1b33ed (patch) | |
tree | b4d6fd5793ccaaed865728e8701ef8d52933b4d8 | |
parent | 5d4f0be5b821063ef9b9e97b58757c79156e1977 (diff) | |
download | bcm5719-llvm-a8c46ce608838890a20555045c8409afdc1b33ed.tar.gz bcm5719-llvm-a8c46ce608838890a20555045c8409afdc1b33ed.zip |
[Release notes] Mention readability-container-size-empty improvements.
Differential revision: https://reviews.llvm.org/D24526
llvm-svn: 281510
-rw-r--r-- | clang-tools-extra/docs/ReleaseNotes.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index 201741b3dcd..e18522b27f6 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -95,6 +95,11 @@ Improvements to clang-tidy Warns about the performance overhead arising from concatenating strings using the ``operator+``, instead of ``operator+=``. +- `readability-container-size-empty + <http://clang.llvm.org/extra/clang-tidy/checks/readability-container-size-empty.html>`_ check + supports arbitrary containers with with suitable ``empty()`` and ``size()`` + methods. + - New `readability-misplaced-array-index <http://clang.llvm.org/extra/clang-tidy/checks/readability-misplaced-array-index.html>`_ check |