diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2016-04-21 18:13:09 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2016-04-21 18:13:09 +0000 |
commit | 656eb13fe0bd0cfd997bc45ee751e46c7129073e (patch) | |
tree | e233f65423ff9e7049fb61fbc5def13e1b149343 /clang-tools-extra/docs/clang-tidy | |
parent | 0e5ff58567be2a08f690c0b6878dbf8a02b50d9c (diff) | |
download | bcm5719-llvm-656eb13fe0bd0cfd997bc45ee751e46c7129073e.tar.gz bcm5719-llvm-656eb13fe0bd0cfd997bc45ee751e46c7129073e.zip |
[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
Diffstat (limited to 'clang-tools-extra/docs/clang-tidy')
-rw-r--r-- | clang-tools-extra/docs/clang-tidy/checks/misc-string-constructor.rst | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang-tools-extra/docs/clang-tidy/checks/misc-string-constructor.rst b/clang-tools-extra/docs/clang-tidy/checks/misc-string-constructor.rst index b6d1a8e6090..694b742c7c7 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/misc-string-constructor.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/misc-string-constructor.rst @@ -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: |