[Release Notes] Mention Clang-tidy misc-string-constructor and misc-suspicious-string-compare checks.

Fix excessive line in misc-string-constructor documentation.

llvm-svn: 267026
This commit is contained in:
Eugene Zelenko 2016-04-21 18:13:09 +00:00
parent 0e5ff58567
commit 656eb13fe0
2 changed files with 10 additions and 1 deletions

View File

@ -118,6 +118,11 @@ identified. The improvements since the 3.8 release include:
Warns about incorrect uses of ``sizeof`` operator.
- New `misc-string-constructor
<http://clang.llvm.org/extra/clang-tidy/checks/misc-string-constructor.html>`_ check
Finds string constructors that are suspicious and probably errors.
- New `misc-string-literal-with-embedded-nul
<http://clang.llvm.org/extra/clang-tidy/checks/misc-string-literal-with-embedded-nul.html>`_ check
@ -135,6 +140,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-suspicious-string-compare
<http://clang.llvm.org/extra/clang-tidy/checks/misc-suspicious-string-compare.html>`_ check
Find suspicious usage of runtime string comparison functions.
- New `misc-unused-using-decls
<http://clang.llvm.org/extra/clang-tidy/checks/misc-unused-using-decls.html>`_ check

View File

@ -5,7 +5,6 @@ misc-string-constructor
Finds string constructors that are suspicious and probably errors.
A common mistake is to swap parameters to the 'fill' string-constructor.
Examples: