[clang-tools-extra] r272026 - Adding a release note for the misc-misplaced-const check added in r272025.
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Tue Jun 7 10:29:49 PDT 2016
Author: aaronballman
Date: Tue Jun 7 12:29:49 2016
New Revision: 272026
URL: http://llvm.org/viewvc/llvm-project?rev=272026&view=rev
Log:
Adding a release note for the misc-misplaced-const check added in r272025.
Modified:
clang-tools-extra/trunk/docs/ReleaseNotes.rst
Modified: clang-tools-extra/trunk/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/ReleaseNotes.rst?rev=272026&r1=272025&r2=272026&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/ReleaseNotes.rst (original)
+++ clang-tools-extra/trunk/docs/ReleaseNotes.rst Tue Jun 7 12:29:49 2016
@@ -123,6 +123,12 @@ identified. The improvements since the
Checks if an unused forward declaration is in a wrong namespace.
+- New `misc-misplaced-const
+ <http://clang.llvm.org/extra/clang-tidy/checks/misc-misplaced-const.html>`_ check
+
+ Checks if a const-qualifier is applied to a typedef to pointer type instead of
+ the underlying pointee type.
+
- New `misc-misplaced-widening-cast
<http://clang.llvm.org/extra/clang-tidy/checks/misc-misplaced-widening-cast.html>`_ check
More information about the cfe-commits
mailing list