From 8027bb33308464a75f5644968da2ef6699625607 Mon Sep 17 00:00:00 2001 From: Eugene Zelenko Date: Wed, 11 Jul 2018 20:56:26 +0000 Subject: [PATCH] [Documentation] Fix incorrect documentation references, new checks order in Release Notes llvm-svn: 336850 --- clang-tools-extra/docs/ReleaseNotes.rst | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index 99373543d7f3..2e4f342f1264 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -67,6 +67,12 @@ Improvements to clang-tidy - New module ``zircon`` for checks related to Fuchsia's Zircon kernel. +- New :doc:`abseil-string-find-startswith + ` check. + + Checks whether a ``std::string::find()`` result is compared with 0, and + suggests replacing with ``absl::StartsWith()``. + - New :doc:`android-comparison-in-temp-failure-retry ` check. @@ -96,12 +102,12 @@ Improvements to clang-tidy Warns on unused function return values. - New :doc:`cert-msc32-c - ` check + ` check Detects inappropriate seeding of ``srand()`` function. - New :doc:`cert-msc51-cpp - ` check + ` check Detects inappropriate seeding of C++ random generators and C ``srand()`` function. @@ -122,12 +128,6 @@ Improvements to clang-tidy Warns if a class inherits from multiple classes that are not pure virtual. -- New :doc:`abseil-string-find-startswith - ` check. - - Checks whether a ``std::string::find()`` result is compared with 0, and - suggests replacing with ``absl::StartsWith()``. - - New `fuchsia-restrict-system-includes `_ check -- 2.34.1