Commit 6b077332d38c093de2618d5e1481b42222106065
1 parent
bbe9f8b8
Switch line length from 80 to 100 columns
Showing
2 changed files
with
2 additions
and
1 deletions
.clang-format
| @@ -20,6 +20,7 @@ BraceWrapping: | @@ -20,6 +20,7 @@ BraceWrapping: | ||
| 20 | AfterUnion: true | 20 | AfterUnion: true |
| 21 | BreakBeforeBraces: Custom | 21 | BreakBeforeBraces: Custom |
| 22 | BreakConstructorInitializers: AfterColon | 22 | BreakConstructorInitializers: AfterColon |
| 23 | +ColumnLimit: 100 | ||
| 23 | DeriveLineEnding: false | 24 | DeriveLineEnding: false |
| 24 | PackConstructorInitializers: Never | 25 | PackConstructorInitializers: Never |
| 25 | IncludeCategories: | 26 | IncludeCategories: |
manual/contributing.rst
| @@ -44,7 +44,7 @@ partial summary of the formatting rules: | @@ -44,7 +44,7 @@ partial summary of the formatting rules: | ||
| 44 | 44 | ||
| 45 | - Use spaces, not tabs. | 45 | - Use spaces, not tabs. |
| 46 | 46 | ||
| 47 | -- Keep lines to 80 columns when possible. | 47 | +- Keep lines to 100 columns when possible. |
| 48 | 48 | ||
| 49 | - Braces are on their own lines after classes and functions (and | 49 | - Braces are on their own lines after classes and functions (and |
| 50 | similar top-level constructs) and are compact otherwise. | 50 | similar top-level constructs) and are compact otherwise. |