summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--clang-tools-extra/docs/ReleaseNotes.rst18
1 files changed, 9 insertions, 9 deletions
diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst
index 9db42d614c5..63422ca1d34 100644
--- a/clang-tools-extra/docs/ReleaseNotes.rst
+++ b/clang-tools-extra/docs/ReleaseNotes.rst
@@ -99,10 +99,10 @@ Improvements to clang-tidy
with looping constructs. Every backward jump is rejected. Forward jumps are
only allowed in nested loops.
-- New alias :doc:`fuchsia-header-anon-namespaces
- <clang-tidy/checks/fuchsia-header-anon-namespaces>` to :doc:`google-build-namespaces
- <clang-tidy/checks/google-build-namespaces>`
- added.
+- New :doc:`cppcoreguidelines-narrowing-conversions
+ <clang-tidy/checks/cppcoreguidelines-narrowing-conversions>`_ check
+
+ Checks for narrowing conversions, e. g. ``int i = 0; i += 0.1;``.
- New :doc:`fuchsia-multiple-inheritance
<clang-tidy/checks/fuchsia-multiple-inheritance>` check.
@@ -180,6 +180,11 @@ Improvements to clang-tidy
- The `AnalyzeTemporaryDtors` option was removed, since the corresponding
`cfg-temporary-dtors` option of the Static Analyzer now defaults to `true`.
+- New alias :doc:`fuchsia-header-anon-namespaces
+ <clang-tidy/checks/fuchsia-header-anon-namespaces>` to :doc:`google-build-namespaces
+ <clang-tidy/checks/google-build-namespaces>`
+ added.
+
- New alias :doc:`hicpp-avoid-goto
<clang-tidy/checks/hicpp-avoid-goto>` to :doc:`cppcoreguidelines-avoid-goto
<clang-tidy/checks/cppcoreguidelines-avoid-goto>`
@@ -241,11 +246,6 @@ Improvements to clang-tidy
- The 'google-runtime-member-string-references' check was removed.
-- New `cppcoreguidelines-narrowing-conversions
- <http://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-narrowing-conversions.html>`_ check
-
- Checks for narrowing conversions, e.g. ``int i = 0; i += 0.1;``.
-
Improvements to include-fixer
-----------------------------
OpenPOWER on IntegriCloud