diff options
author | Etienne Bergeron <etienneb@google.com> | 2016-04-14 16:08:04 +0000 |
---|---|---|
committer | Etienne Bergeron <etienneb@google.com> | 2016-04-14 16:08:04 +0000 |
commit | 47205aa773862d2425eb1a5d6e291519085e450d (patch) | |
tree | 11d925e8f879851d5a0deca37b996ddd2ec3e52d | |
parent | 99ef4d04335c4b871df59c12d4ab91a546a0ec97 (diff) | |
download | bcm5719-llvm-47205aa773862d2425eb1a5d6e291519085e450d.tar.gz bcm5719-llvm-47205aa773862d2425eb1a5d6e291519085e450d.zip |
[clang-tidy] Fix documentation generation.
Summary: The patch is fixing the generation of clang-tidy documentation.
Reviewers: alexfh
Subscribers: cfe-commits
Differential Revision: http://reviews.llvm.org/D19121
llvm-svn: 266333
-rw-r--r-- | clang-tools-extra/docs/ReleaseNotes.rst | 1 | ||||
-rw-r--r-- | clang-tools-extra/docs/clang-tidy/checks/readability-deleted-default.rst | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index bbf893c5cb6..c61121988cb 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -286,6 +286,7 @@ The 3.8 release didn't include release notes for :program:`clang-tidy`. In the direct base class of this kind. The check has two complementary aspects: + 1. Ensure every constructor for a record type needing initialization value-initializes all members and direct bases via a combination of in-class initializers and the member initializer list. diff --git a/clang-tools-extra/docs/clang-tidy/checks/readability-deleted-default.rst b/clang-tools-extra/docs/clang-tidy/checks/readability-deleted-default.rst index 3012911d279..2fb87cb261f 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/readability-deleted-default.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/readability-deleted-default.rst @@ -7,6 +7,7 @@ Checks that constructors and assignment operators marked as ``= default`` are not actually deleted by the compiler. .. code:: c++ + class Example { public: // This constructor is deleted because I is missing a default value. |