[clang-tools-extra] r265813 - [Release Notes] Sort checks alphabetically.
Eugene Zelenko via cfe-commits
cfe-commits at lists.llvm.org
Fri Apr 8 10:21:28 PDT 2016
Author: eugenezelenko
Date: Fri Apr 8 12:21:27 2016
New Revision: 265813
URL: http://llvm.org/viewvc/llvm-project?rev=265813&view=rev
Log:
[Release Notes] Sort checks alphabetically.
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=265813&r1=265812&r2=265813&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/ReleaseNotes.rst (original)
+++ clang-tools-extra/trunk/docs/ReleaseNotes.rst Fri Apr 8 12:21:27 2016
@@ -74,6 +74,12 @@ identified. The improvements since the
Flags ``for`` loops where the induction expression has a floating-point type.
+- New `cppcoreguidelines-interfaces-global-init
+ <http://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-interfaces-global-init.html>`_ check
+
+ Flags initializers of globals that access extern objects, and therefore can
+ lead to order-of-initialization problems.
+
- New `cppcoreguidelines-pro-type-member-init
<http://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-pro-type-member-init.html>`_ check
@@ -164,13 +170,6 @@ identified. The improvements since the
Finds static function and variable definitions in anonymous namespace.
-- New `cppcoreguidelines-interfaces-global-init
- <http://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-interfaces-global-init.html>`_ check
-
- Flags initializers of globals that access extern objects, and therefore can
- lead to order-of-initialization problems.
-
-
Fixed bugs:
- Crash when running on compile database with relative source files paths.
More information about the cfe-commits
mailing list