[clang-tools-extra] r266333 - [clang-tidy] Fix documentation generation.

Etienne Bergeron via cfe-commits cfe-commits at lists.llvm.org
Thu Apr 14 09:08:04 PDT 2016


Author: etienneb
Date: Thu Apr 14 11:08:04 2016
New Revision: 266333

URL: http://llvm.org/viewvc/llvm-project?rev=266333&view=rev
Log:
[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

Modified:
    clang-tools-extra/trunk/docs/ReleaseNotes.rst
    clang-tools-extra/trunk/docs/clang-tidy/checks/readability-deleted-default.rst

Modified: clang-tools-extra/trunk/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/ReleaseNotes.rst?rev=266333&r1=266332&r2=266333&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/ReleaseNotes.rst (original)
+++ clang-tools-extra/trunk/docs/ReleaseNotes.rst Thu Apr 14 11:08:04 2016
@@ -286,6 +286,7 @@ The 3.8 release didn't include release n
   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.

Modified: clang-tools-extra/trunk/docs/clang-tidy/checks/readability-deleted-default.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/checks/readability-deleted-default.rst?rev=266333&r1=266332&r2=266333&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/checks/readability-deleted-default.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/checks/readability-deleted-default.rst Thu Apr 14 11:08:04 2016
@@ -7,6 +7,7 @@ Checks that constructors and assignment
 not actually deleted by the compiler.
 
 .. code:: c++
+
   class Example {
   public:
     // This constructor is deleted because I is missing a default value.




More information about the cfe-commits mailing list