[clang-tools-extra] r332277 - [Documentation] Alphabetical order of new checks in Release Notes.
Eugene Zelenko via cfe-commits
cfe-commits at lists.llvm.org
Mon May 14 12:12:40 PDT 2018
Author: eugenezelenko
Date: Mon May 14 12:12:40 2018
New Revision: 332277
URL: http://llvm.org/viewvc/llvm-project?rev=332277&view=rev
Log:
[Documentation] Alphabetical order of new checks in Release Notes.
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=332277&r1=332276&r2=332277&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/ReleaseNotes.rst (original)
+++ clang-tools-extra/trunk/docs/ReleaseNotes.rst Mon May 14 12:12:40 2018
@@ -76,6 +76,11 @@ Improvements to clang-tidy
Detects and fixes calls to grand-...parent virtual methods instead of calls
to overridden parent's virtual methods.
+- New :doc:`bugprone-terminating-continue
+ <clang-tidy/checks/bugprone-terminating-continue>` check
+
+ Checks if a ``continue`` statement terminates the loop.
+
- New :doc:`bugprone-throw-keyword-missing
<clang-tidy/checks/bugprone-throw-keyword-missing>` check.
@@ -146,11 +151,6 @@ Improvements to clang-tidy
Warns or suggests alternatives if SIMD intrinsics are used which can be replaced by
``std::experimental::simd`` operations.
-- New :doc:`bugprone-terminating-continue
- <clang-tidy/checks/bugprone-terminating-continue>` check
-
- Checks if a ``continue`` statement terminates the loop.
-
- New :doc:`zircon-temporary-objects
<clang-tidy/checks/zircon-temporary-objects>` check.
More information about the cfe-commits
mailing list