[clang-tools-extra] r331461 - Added trailing periods.
Alexander Kornienko via cfe-commits
cfe-commits at lists.llvm.org
Thu May 3 09:01:50 PDT 2018
Author: alexfh
Date: Thu May 3 09:01:49 2018
New Revision: 331461
URL: http://llvm.org/viewvc/llvm-project?rev=331461&view=rev
Log:
Added trailing periods.
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=331461&r1=331460&r2=331461&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/ReleaseNotes.rst (original)
+++ clang-tools-extra/trunk/docs/ReleaseNotes.rst Thu May 3 09:01:49 2018
@@ -65,30 +65,30 @@ Improvements to clang-tidy
- New module ``zircon`` for checks related to Fuchsia's Zircon kernel.
- New :doc:`android-comparison-in-temp-failure-retry
- <clang-tidy/checks/android-comparison-in-temp-failure-retry>` check
+ <clang-tidy/checks/android-comparison-in-temp-failure-retry>` check.
Diagnoses comparisons that appear to be incorrectly placed in the argument to
the ``TEMP_FAILURE_RETRY`` macro.
- New :doc:`bugprone-parent-virtual-call
- <clang-tidy/checks/bugprone-parent-virtual-call>` check
+ <clang-tidy/checks/bugprone-parent-virtual-call>` check.
Detects and fixes calls to grand-...parent virtual methods instead of calls
to overridden parent's virtual methods.
- New :doc:`bugprone-throw-keyword-missing
- <clang-tidy/checks/bugprone-throw-keyword-missing>` check
+ <clang-tidy/checks/bugprone-throw-keyword-missing>` check.
Diagnoses when a temporary object that appears to be an exception is
constructed but not thrown.
- New :doc:`bugprone-unused-return-value
- <clang-tidy/checks/bugprone-unused-return-value>` check
+ <clang-tidy/checks/bugprone-unused-return-value>` check.
Warns on unused function return values.
- New :doc:`cppcoreguidelines-avoid-goto
- <clang-tidy/checks/cppcoreguidelines-avoid-goto>` check
+ <clang-tidy/checks/cppcoreguidelines-avoid-goto>` check.
The usage of ``goto`` for control flow is error prone and should be replaced
with looping constructs. Every backward jump is rejected. Forward jumps are
@@ -100,53 +100,53 @@ Improvements to clang-tidy
added.
- New :doc:`fuchsia-multiple-inheritance
- <clang-tidy/checks/fuchsia-multiple-inheritance>` check
+ <clang-tidy/checks/fuchsia-multiple-inheritance>` check.
Warns if a class inherits from multiple classes that are not pure virtual.
- New :doc:`abseil-string-find-startswith
- <clang-tidy/checks/abseil-string-find-startswith>` check
+ <clang-tidy/checks/abseil-string-find-startswith>` check.
Checks whether a ``std::string::find()`` result is compared with 0, and
suggests replacing with ``absl::StartsWith()``.
- New :doc:`fuchsia-statically-constructed-objects
- <clang-tidy/checks/fuchsia-statically-constructed-objects>` check
+ <clang-tidy/checks/fuchsia-statically-constructed-objects>` check.
Warns if global, non-trivial objects with static storage are constructed,
unless the object is statically initialized with a ``constexpr`` constructor
or has no explicit constructor.
- New :doc:`fuchsia-trailing-return
- <clang-tidy/checks/fuchsia-trailing-return>` check
+ <clang-tidy/checks/fuchsia-trailing-return>` check.
Functions that have trailing returns are disallowed, except for those
using ``decltype`` specifiers and lambda with otherwise unutterable
return types.
- New :doc:`hicpp-multiway-paths-covered
- <clang-tidy/checks/hicpp-multiway-paths-covered>` check
+ <clang-tidy/checks/hicpp-multiway-paths-covered>` check.
Checks on ``switch`` and ``if`` - ``else if`` constructs that do not cover all possible code paths.
- New :doc:`modernize-use-uncaught-exceptions
- <clang-tidy/checks/modernize-use-uncaught-exceptions>` check
+ <clang-tidy/checks/modernize-use-uncaught-exceptions>` check.
Finds and replaces deprecated uses of ``std::uncaught_exception`` to
``std::uncaught_exceptions``.
- New :doc:`portability-simd-intrinsics
- <clang-tidy/checks/portability-simd-intrinsics>` check
+ <clang-tidy/checks/portability-simd-intrinsics>` check.
Warns or suggests alternatives if SIMD intrinsics are used which can be replaced by
``std::experimental::simd`` operations.
- New :doc:`zircon-temporary-objects
- <clang-tidy/checks/zircon-temporary-objects>` check
+ <clang-tidy/checks/zircon-temporary-objects>` check.
Warns on construction of specific temporary objects in the Zircon kernel.
-- Adding the missing bitwise assignment operations to
+- Added the missing bitwise assignment operations to
:doc:`hicpp-signed-bitwise <clang-tidy/checks/hicpp-signed-bitwise>`.
- New option `MinTypeNameLength` for :doc:`modernize-use-auto
@@ -156,8 +156,8 @@ Improvements to clang-tidy
replace types with the name length >= 5 letters only (ex. ``double``,
``unsigned``).
-- Added `VariableThreshold` option to :doc:`readability-function-size
- <clang-tidy/checks/readability-function-size>` check
+- Add `VariableThreshold` option to :doc:`readability-function-size
+ <clang-tidy/checks/readability-function-size>` check.
Flags functions that have more than a specified number of variables declared
in the body.
More information about the cfe-commits
mailing list