From 7bde7265f2f69b9e0175813ea2023ecb7034b3ce Mon Sep 17 00:00:00 2001 From: Eugene Zelenko Date: Sat, 8 Dec 2018 00:07:34 +0000 Subject: [PATCH] [Documentation] Alphabetical order in new checks list. llvm-svn: 348666 --- clang-tools-extra/docs/ReleaseNotes.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index e1c23d66b55d..9527cd49b1d4 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -122,13 +122,6 @@ Improvements to clang-tidy Flags uses of ``absl::StrCat()`` to append to a ``std::string``. Suggests ``absl::StrAppend()`` should be used instead. -- New :doc:`bugprone-too-small-loop-variable - ` check. - - Detects those ``for`` loops that have a loop variable with a "too small" type - which means this type can't represent all values which are part of the - iteration range. - - New :doc:`abseil-upgrade-duration-conversions ` check. @@ -136,6 +129,13 @@ Improvements to clang-tidy argument needs an explicit cast to continue compiling after upcoming API changes. +- New :doc:`bugprone-too-small-loop-variable + ` check. + + Detects those ``for`` loops that have a loop variable with a "too small" type + which means this type can't represent all values which are part of the + iteration range. + - New :doc:`cppcoreguidelines-macro-usage ` check.