r236965 - Fix indentation problem introduced in r236964. NFC

Jonathan Roelofs jonathan at codesourcery.com
Sun May 10 19:13:24 PDT 2015


Author: jroelofs
Date: Sun May 10 21:13:24 2015
New Revision: 236965

URL: http://llvm.org/viewvc/llvm-project?rev=236965&view=rev
Log:
Fix indentation problem introduced in r236964. NFC

Modified:
    cfe/trunk/docs/ClangFormatStyleOptions.rst

Modified: cfe/trunk/docs/ClangFormatStyleOptions.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/ClangFormatStyleOptions.rst?rev=236965&r1=236964&r2=236965&view=diff
==============================================================================
--- cfe/trunk/docs/ClangFormatStyleOptions.rst (original)
+++ cfe/trunk/docs/ClangFormatStyleOptions.rst Sun May 10 21:13:24 2015
@@ -156,10 +156,10 @@ the configuration (without a prefix: ``A
   This applies to round brackets (parentheses), angle brackets and square
   brackets. This will result in formattings like
 
-.. code-block:: c++
+  .. code-block:: c++
 
-  someLongFunction(argument1,
-  argument2);
+    someLongFunction(argument1,
+    argument2);
 
 **AlignConsecutiveAssignments** (``bool``)
   If ``true``, aligns consecutive assignments.
@@ -167,11 +167,11 @@ the configuration (without a prefix: ``A
   This will align the assignment operators of consecutive lines. This
   will result in formattings like
 
-.. code-block:: c++
+  .. code-block:: c++
 
-  int aaaa = 12;
-  int b    = 23;
-  int ccc  = 23;
+    int aaaa = 12;
+    int b    = 23;
+    int ccc  = 23;
 
 **AlignEscapedNewlinesLeft** (``bool``)
   If ``true``, aligns escaped newlines as far left as possible.
@@ -344,10 +344,10 @@ the configuration (without a prefix: ``A
 
   These are expected to be macros of the form:
 
-.. code-block:: c++
+    .. code-block:: c++
 
-  FOREACH(<variable-declaration>, ...)
-  <loop-body>
+      FOREACH(<variable-declaration>, ...)
+      <loop-body>
 
   For example: BOOST_FOREACH.
 





More information about the cfe-commits mailing list