Update 'Coding Style'
parent
7ce71ef18f
commit
56bc084a26
1 changed files with 20 additions and 1 deletions
|
@ -51,7 +51,26 @@ while ((c = *str++))
|
|||
hash = (hash * 33) ^ c;
|
||||
}
|
||||
```
|
||||
Continuation lines should align wrapped elements either vertically using Python’s implicit line joining inside parentheses, brackets and braces, or using a hanging indent [1]. When using a hanging indent the following should be considered; there should be no arguments on the first line and further indentation should be used to clearly distinguish itself as a continuation line:
|
||||
|
||||
Continuation lines should align wrapped elements either vertically using Python’s implicit line joining inside parentheses, brackets and braces, or using a hanging indent . When using a hanging indent the following should be considered; there should be no arguments on the first line and further indentation should be used to clearly distinguish itself as a continuation line:
|
||||
|
||||
```c
|
||||
error = initialize_tagtree(&prec_control->tag_inclusion,
|
||||
prec_control->numCbX,
|
||||
prec_control->numCbY,
|
||||
prec_control->numCbZ,
|
||||
prec_control->numCbTS)
|
||||
exit(error);
|
||||
```
|
||||
```c
|
||||
error = initialize_tagtree(
|
||||
&prec_control->tag_inclusion,
|
||||
prec_control->numCbX,
|
||||
prec_control->numCbY,
|
||||
prec_control->numCbZ,
|
||||
prec_control->numCbTS);
|
||||
exit(error);
|
||||
```
|
||||
|
||||
### Braces
|
||||
|
||||
|
|
Loading…
Reference in a new issue