diff options
| author | Don Hinton <hintonda@gmail.com> | 2019-06-16 17:57:37 +0000 |
|---|---|---|
| committer | Don Hinton <hintonda@gmail.com> | 2019-06-16 17:57:37 +0000 |
| commit | 3a92aa29992199d537254b10c0b0f29088277a58 (patch) | |
| tree | 2b6255be828e0f74a9a05d901119fbd1b8a6fc08 | |
| parent | 41abf2766e26d4b38a68210cff3d9ebd819a0db4 (diff) | |
| download | bcm5719-llvm-3a92aa29992199d537254b10c0b0f29088277a58.tar.gz bcm5719-llvm-3a92aa29992199d537254b10c0b0f29088277a58.zip | |
[docs] Fix a few problems with clang-tool docs to get the bots green again.
llvm-svn: 363518
| -rw-r--r-- | clang-tools-extra/docs/ReleaseNotes.rst | 5 | ||||
| -rw-r--r-- | clang-tools-extra/docs/clang-tidy/checks/android-cloexec-pipe.rst | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index bf0a57b1475..ed8f15295f8 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -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{};``). diff --git a/clang-tools-extra/docs/clang-tidy/checks/android-cloexec-pipe.rst b/clang-tools-extra/docs/clang-tidy/checks/android-cloexec-pipe.rst index 15f6dfa1aff..b0504e9baee 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/android-cloexec-pipe.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/android-cloexec-pipe.rst @@ -17,4 +17,5 @@ Examples: Suggested replacement: .. code-block:: c++ + pipe2(pipefd, O_CLOEXEC); |

