[clang-tools-extra] r363518 - [docs] Fix a few problems with clang-tool docs to get the bots green again.
Don Hinton via cfe-commits
cfe-commits at lists.llvm.org
Sun Jun 16 10:57:37 PDT 2019
Author: dhinton
Date: Sun Jun 16 10:57:37 2019
New Revision: 363518
URL: http://llvm.org/viewvc/llvm-project?rev=363518&view=rev
Log:
[docs] Fix a few problems with clang-tool docs to get the bots green again.
Modified:
clang-tools-extra/trunk/docs/ReleaseNotes.rst
clang-tools-extra/trunk/docs/clang-tidy/checks/android-cloexec-pipe.rst
Modified: clang-tools-extra/trunk/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/ReleaseNotes.rst?rev=363518&r1=363517&r2=363518&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/ReleaseNotes.rst (original)
+++ clang-tools-extra/trunk/docs/ReleaseNotes.rst Sun Jun 16 10:57:37 2019
@@ -192,11 +192,12 @@ Improvements to clang-tidy
Rewrites function signatures to use a trailing return type.
- The :doc:`misc-throw-by-value-catch-by-reference
- <clang-tidy/checks/misc-throw-by-value-catch-by-reference.rst>` now supports
+ <clang-tidy/checks/misc-throw-by-value-catch-by-reference>` now supports
`WarnOnLargeObject` and `MaxSize` options to warn on any large trivial
object caught by value.
-- Added `UseAssignment` option to :doc:`cppcoreguidelines-pro-type-member-init`
+- Added `UseAssignment` option to :doc:`cppcoreguidelines-pro-type-member-init
+ <clang-tidy/checks/cppcoreguidelines-pro-type-member-init>`
If set to true, the check will provide fix-its with literal initializers
(``int i = 0;``) instead of curly braces (``int i{};``).
Modified: clang-tools-extra/trunk/docs/clang-tidy/checks/android-cloexec-pipe.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/checks/android-cloexec-pipe.rst?rev=363518&r1=363517&r2=363518&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/checks/android-cloexec-pipe.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/checks/android-cloexec-pipe.rst Sun Jun 16 10:57:37 2019
@@ -17,4 +17,5 @@ Examples:
Suggested replacement:
.. code-block:: c++
+
pipe2(pipefd, O_CLOEXEC);
More information about the cfe-commits
mailing list