[Documentation] Alphabetical order in new checks list.

llvm-svn: 348666
This commit is contained in:
Eugene Zelenko 2018-12-08 00:07:34 +00:00
parent 0ef54dbd64
commit 7bde7265f2
1 changed files with 7 additions and 7 deletions

View File

@ -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.