Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Clang format brace style fix
- Loading branch information
Showing
with
11 additions
and
1 deletion.
-
+11
−1
.clang-format
|
|
@@ -1,7 +1,17 @@ |
|
|
BasedOnStyle: LLVM |
|
|
IndentWidth: 8 |
|
|
UseTab: Always |
|
|
BreakBeforeBraces: Linux |
|
|
BreakBeforeBraces: Custom |
|
|
BraceWrapping: |
|
|
AfterClass: true |
|
|
AfterControlStatement: false |
|
|
AfterEnum: true |
|
|
AfterFunction: true |
|
|
AfterNamespace: true |
|
|
AfterStruct: true |
|
|
AfterUnion: true |
|
|
BeforeCatch: false |
|
|
BeforeElse: false |
|
|
AllowShortIfStatementsOnASingleLine: false |
|
|
IndentCaseLabels: false |
|
|
AccessModifierOffset: -8 |
|
|