Commit 6b077332d38c093de2618d5e1481b42222106065

Authored by Jay Berkenbilt
1 parent bbe9f8b8

Switch line length from 80 to 100 columns

.clang-format
... ... @@ -20,6 +20,7 @@ BraceWrapping:
20 20 AfterUnion: true
21 21 BreakBeforeBraces: Custom
22 22 BreakConstructorInitializers: AfterColon
  23 +ColumnLimit: 100
23 24 DeriveLineEnding: false
24 25 PackConstructorInitializers: Never
25 26 IncludeCategories:
... ...
manual/contributing.rst
... ... @@ -44,7 +44,7 @@ partial summary of the formatting rules:
44 44  
45 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 49 - Braces are on their own lines after classes and functions (and
50 50 similar top-level constructs) and are compact otherwise.
... ...