Skip to content
Snippets Groups Projects
Commit f821aa0d authored by Jonathan Roelofs's avatar Jonathan Roelofs
Browse files

Fix indentation problem introduced in r236964. NFC

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@236965 91177308-0d34-0410-b5e6-96231b3b80d8
parent a994172f
No related branches found
No related tags found
No related merge requests found
...@@ -156,10 +156,10 @@ the configuration (without a prefix: ``Auto``). ...@@ -156,10 +156,10 @@ the configuration (without a prefix: ``Auto``).
This applies to round brackets (parentheses), angle brackets and square This applies to round brackets (parentheses), angle brackets and square
brackets. This will result in formattings like brackets. This will result in formattings like
.. code-block:: c++ .. code-block:: c++
someLongFunction(argument1, someLongFunction(argument1,
argument2); argument2);
**AlignConsecutiveAssignments** (``bool``) **AlignConsecutiveAssignments** (``bool``)
If ``true``, aligns consecutive assignments. If ``true``, aligns consecutive assignments.
...@@ -167,11 +167,11 @@ the configuration (without a prefix: ``Auto``). ...@@ -167,11 +167,11 @@ the configuration (without a prefix: ``Auto``).
This will align the assignment operators of consecutive lines. This This will align the assignment operators of consecutive lines. This
will result in formattings like will result in formattings like
.. code-block:: c++ .. code-block:: c++
int aaaa = 12; int aaaa = 12;
int b = 23; int b = 23;
int ccc = 23; int ccc = 23;
**AlignEscapedNewlinesLeft** (``bool``) **AlignEscapedNewlinesLeft** (``bool``)
If ``true``, aligns escaped newlines as far left as possible. If ``true``, aligns escaped newlines as far left as possible.
...@@ -344,10 +344,10 @@ the configuration (without a prefix: ``Auto``). ...@@ -344,10 +344,10 @@ the configuration (without a prefix: ``Auto``).
These are expected to be macros of the form: These are expected to be macros of the form:
.. code-block:: c++ .. code-block:: c++
FOREACH(<variable-declaration>, ...) FOREACH(<variable-declaration>, ...)
<loop-body> <loop-body>
For example: BOOST_FOREACH. For example: BOOST_FOREACH.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment