Fix indentation
@@ -38,7 +38,7 @@ Curly braces are used for all statement blocks, even single statements.
|
|||||||
|
|
||||||
```cxx
|
```cxx
|
||||||
if (condition) {
|
if (condition) {
|
||||||
single_statement;
|
single_statement;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -67,7 +67,7 @@ should be split with the parameter names right aligned.
|
|||||||
string
|
string
|
||||||
my_function()
|
my_function()
|
||||||
{
|
{
|
||||||
// ...
|
// ...
|
||||||
}
|
}
|
||||||
|
|
||||||
string
|
string
|
||||||
@@ -75,7 +75,7 @@ my_class::
|
|||||||
my_function(my_first_type arg_0,
|
my_function(my_first_type arg_0,
|
||||||
my_second_type const& arg_1)
|
my_second_type const& arg_1)
|
||||||
{
|
{
|
||||||
// ...
|
// ...
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -175,7 +175,7 @@ Curly braces are used for all statement blocks, even single statements.
|
|||||||
|
|
||||||
```cxx
|
```cxx
|
||||||
if (condition) {
|
if (condition) {
|
||||||
single_statement;
|
single_statement;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user