[clang-tools-extra] r348666 - [Documentation] Alphabetical order in new checks list.
Eugene Zelenko via cfe-commits
cfe-commits at lists.llvm.org
Fri Dec 7 16:07:34 PST 2018
Author: eugenezelenko
Date: Fri Dec 7 16:07:34 2018
New Revision: 348666
URL: http://llvm.org/viewvc/llvm-project?rev=348666&view=rev
Log:
[Documentation] Alphabetical order in new checks list.
Modified:
clang-tools-extra/trunk/docs/ReleaseNotes.rst
Modified: clang-tools-extra/trunk/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/ReleaseNotes.rst?rev=348666&r1=348665&r2=348666&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/ReleaseNotes.rst (original)
+++ clang-tools-extra/trunk/docs/ReleaseNotes.rst Fri Dec 7 16:07:34 2018
@@ -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.
More information about the cfe-commits
mailing list