Fix formatting of a few code blocks. NFC

llvm-svn: 236964
This commit is contained in:
Jonathan Roelofs 2015-05-11 02:05:20 +00:00
parent 6d3d0f11ea
commit e868b624da
1 changed files with 9 additions and 6 deletions

View File

@ -155,21 +155,23 @@ the configuration (without a prefix: ``Auto``).
This applies to round brackets (parentheses), angle brackets and square
brackets. This will result in formattings like
\code
.. code-block:: c++
someLongFunction(argument1,
argument2);
\endcode
**AlignConsecutiveAssignments** (``bool``)
If ``true``, aligns consecutive assignments.
This will align the assignment operators of consecutive lines. This
will result in formattings like
\code
.. code-block:: c++
int aaaa = 12;
int b = 23;
int ccc = 23;
\endcode
**AlignEscapedNewlinesLeft** (``bool``)
If ``true``, aligns escaped newlines as far left as possible.
@ -341,10 +343,11 @@ the configuration (without a prefix: ``Auto``).
instead of as function calls.
These are expected to be macros of the form:
\code
.. code-block:: c++
FOREACH(<variable-declaration>, ...)
<loop-body>
\endcode
For example: BOOST_FOREACH.