r268728 - s/codeblock/code-block to fix the Sphinx build.

Aaron Ballman via cfe-commits cfe-commits at lists.llvm.org
Fri May 6 04:56:58 PDT 2016


Author: aaronballman
Date: Fri May  6 06:56:57 2016
New Revision: 268728

URL: http://llvm.org/viewvc/llvm-project?rev=268728&view=rev
Log:
s/codeblock/code-block to fix the Sphinx build.

Modified:
    cfe/trunk/docs/ReleaseNotes.rst

Modified: cfe/trunk/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/ReleaseNotes.rst?rev=268728&r1=268727&r2=268728&view=diff
==============================================================================
--- cfe/trunk/docs/ReleaseNotes.rst (original)
+++ cfe/trunk/docs/ReleaseNotes.rst Fri May  6 06:56:57 2016
@@ -94,7 +94,7 @@ C++ Language Changes in Clang
 - Clang now enforces the rule that a *using-declaration* cannot name an enumerator of a
   scoped enumeration.
 
-  .. codeblock:: c++
+  .. code-block:: c++
 
     namespace Foo { enum class E { e }; }
     namespace Bar {
@@ -105,7 +105,7 @@ C++ Language Changes in Clang
 - Clang now enforces the rule that an enumerator of an unscoped enumeration declared at
   class scope can only be named by a *using-declaration* in a derived class.
 
-  .. codeblock:: c++
+  .. code-block:: c++
 
     class Foo { enum E { e }; }
     using Foo::e; // error
@@ -127,7 +127,7 @@ Changes to C++1z features since Clang 3.
 
 - In C++1z mode, aggregate initialization can be performed for classes with base classes:
 
-  .. codeblock:: c++
+  .. code-block:: c++
 
   struct A { int n; };
   struct B : A { int x, y; };




More information about the cfe-commits mailing list