aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Zelenko <eugene.zelenko@gmail.com>2018-12-08 00:07:34 +0000
committerEugene Zelenko <eugene.zelenko@gmail.com>2018-12-08 00:07:34 +0000
commit3a9ded115afe226e033ec7629ca1fd443efea197 (patch)
tree6677664eb2b57b57a2d78296846ba8006f3cb3ce
parentf6a55bbe9a2841744b8bb25a850574adb2ae1bf6 (diff)
[Documentation] Alphabetical order in new checks list.
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@348666 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ReleaseNotes.rst14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index e1c23d66..9527cd49 100644
--- a/docs/ReleaseNotes.rst
+++ b/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
- <clang-tidy/checks/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
<clang-tidy/checks/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
+ <clang-tidy/checks/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
<clang-tidy/checks/cppcoreguidelines-macro-usage>` check.