[clang-tidy] Fix documentation generation.
authorEtienne Bergeron <etienneb@google.com>
Thu, 14 Apr 2016 16:08:04 +0000 (16:08 +0000)
committerEtienne Bergeron <etienneb@google.com>
Thu, 14 Apr 2016 16:08:04 +0000 (16:08 +0000)
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

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

index bbf893c..c611219 100644 (file)
@@ -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.
index 3012911..2fb87cb 100644 (file)
@@ -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.