This revision was automatically updated to reflect the committed changes. Closed by commit rL266333: [clang-tidy] Fix documentation generation. (authored by etienneb).
Changed prior to commit: http://reviews.llvm.org/D19121?vs=53741&id=53744#toc Repository: rL LLVM http://reviews.llvm.org/D19121 Files: clang-tools-extra/trunk/docs/ReleaseNotes.rst clang-tools-extra/trunk/docs/clang-tidy/checks/readability-deleted-default.rst Index: clang-tools-extra/trunk/docs/clang-tidy/checks/readability-deleted-default.rst =================================================================== --- clang-tools-extra/trunk/docs/clang-tidy/checks/readability-deleted-default.rst +++ clang-tools-extra/trunk/docs/clang-tidy/checks/readability-deleted-default.rst @@ -7,6 +7,7 @@ not actually deleted by the compiler. .. code:: c++ + class Example { public: // This constructor is deleted because I is missing a default value. Index: clang-tools-extra/trunk/docs/ReleaseNotes.rst =================================================================== --- clang-tools-extra/trunk/docs/ReleaseNotes.rst +++ clang-tools-extra/trunk/docs/ReleaseNotes.rst @@ -286,6 +286,7 @@ 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.
Index: clang-tools-extra/trunk/docs/clang-tidy/checks/readability-deleted-default.rst =================================================================== --- clang-tools-extra/trunk/docs/clang-tidy/checks/readability-deleted-default.rst +++ clang-tools-extra/trunk/docs/clang-tidy/checks/readability-deleted-default.rst @@ -7,6 +7,7 @@ not actually deleted by the compiler. .. code:: c++ + class Example { public: // This constructor is deleted because I is missing a default value. Index: clang-tools-extra/trunk/docs/ReleaseNotes.rst =================================================================== --- clang-tools-extra/trunk/docs/ReleaseNotes.rst +++ clang-tools-extra/trunk/docs/ReleaseNotes.rst @@ -286,6 +286,7 @@ 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.
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits