diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2016-04-19 17:31:58 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2016-04-19 17:31:58 +0000 |
commit | e0e87aff5cbaadccea2b91fa4011f199a3b14a07 (patch) | |
tree | a289a5b8084c6c527af1da7ff9740d776afc6f3c | |
parent | 18609f5743889a2ac89774f317f82d86030e0ef8 (diff) | |
download | bcm5719-llvm-e0e87aff5cbaadccea2b91fa4011f199a3b14a07.tar.gz bcm5719-llvm-e0e87aff5cbaadccea2b91fa4011f199a3b14a07.zip |
[Release Notes] Mention Clang-tidy misc-unused-using-decls check.
llvm-svn: 266770
-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 91f7fdca5a4..fa3b8da7615 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -135,6 +135,11 @@ identified. The improvements since the 3.8 release include: Finds most instances of stray semicolons that unexpectedly alter the meaning of the code. +- New `misc-unused-using-decls + <http://clang.llvm.org/extra/clang-tidy/checks/misc-unused-using-decls.html>`_ check + + Finds unused ``using`` declarations. + - New `modernize-deprecated-headers <http://clang.llvm.org/extra/clang-tidy/checks/modernize-deprecated-headers.html>`_ check |