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