]> granicus.if.org Git - clang/commitdiff
Fix indentation problem introduced in r236964. NFC
authorJonathan Roelofs <jonathan@codesourcery.com>
Mon, 11 May 2015 02:13:24 +0000 (02:13 +0000)
committerJonathan Roelofs <jonathan@codesourcery.com>
Mon, 11 May 2015 02:13:24 +0000 (02:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@236965 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ClangFormatStyleOptions.rst

index 33020d8f94dce1f22052932c8d8271b84a642bbf..c06a8c76ecd50f3bcafac130a7c1f818fb935a77 100644 (file)
@@ -156,10 +156,10 @@ the configuration (without a prefix: ``Auto``).
   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: ``Auto``).
   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: ``Auto``).
 
   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.