Skip to content
Snippets Groups Projects
Commit 58da6913 authored by Stephan Bergmann's avatar Stephan Bergmann
Browse files

Indent code blocks so they are actually treated as such

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@318530 91177308-0d34-0410-b5e6-96231b3b80d8
parent 2e4d25a0
No related branches found
No related tags found
No related merge requests found
...@@ -994,9 +994,9 @@ the configuration (without a prefix: ``Auto``). ...@@ -994,9 +994,9 @@ the configuration (without a prefix: ``Auto``).
.. code-block:: c++ .. code-block:: c++
Constructor() Constructor()
: initializer1(), : initializer1(),
initializer2() initializer2()
* ``BCIS_BeforeComma`` (in configuration: ``BeforeComma``) * ``BCIS_BeforeComma`` (in configuration: ``BeforeComma``)
Break constructor initializers before the colon and commas, and align Break constructor initializers before the colon and commas, and align
...@@ -1004,18 +1004,18 @@ the configuration (without a prefix: ``Auto``). ...@@ -1004,18 +1004,18 @@ the configuration (without a prefix: ``Auto``).
.. code-block:: c++ .. code-block:: c++
Constructor() Constructor()
: initializer1() : initializer1()
, initializer2() , initializer2()
* ``BCIS_AfterColon`` (in configuration: ``AfterColon``) * ``BCIS_AfterColon`` (in configuration: ``AfterColon``)
Break constructor initializers after the colon and commas. Break constructor initializers after the colon and commas.
.. code-block:: c++ .. code-block:: c++
Constructor() : Constructor() :
initializer1(), initializer1(),
initializer2() initializer2()
......
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