diff options
-rw-r--r-- | clang-tools-extra/docs/ReleaseNotes.rst | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index 7bc1fb58a3f..89608489433 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -74,6 +74,12 @@ identified. The improvements since the 3.8 release include: 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 3.8 release include: 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. |