Skip to content

Commit

Permalink
Fixes syntax error in clang-format file.
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsracz committed Jun 5, 2022
1 parent 5dd9852 commit 1e0c2df
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -45,22 +45,22 @@ SpaceBeforeAssignmentOperators: true
ContinuationIndentWidth: 4

# This big block of settings works around indentation after an extern "C"
BraceWrapping:
AfterClass: true
AfterControlStatement: true
AfterEnum: true
AfterFunction: true
AfterNamespace: true
AfterObjCDeclaration: true
AfterStruct: true
AfterUnion: true
AfterExternBlock: false
BeforeCatch: true
BeforeElse: true
IndentBraces: false
SplitEmptyFunction: false
SplitEmptyRecord: false
SplitEmptyNamespace: false
BraceWrapping: {
AfterClass: true,
AfterControlStatement: true,
AfterEnum: true,
AfterFunction: true,
AfterNamespace: true,
AfterObjCDeclaration: true,
AfterStruct: true,
AfterUnion: true,
AfterExternBlock: false,
BeforeCatch: true,
BeforeElse: true,
IndentBraces: false,
SplitEmptyFunction: false,
SplitEmptyRecord: false,
SplitEmptyNamespace: false }
BreakBeforeBraces: Custom
IndentExternBlock: false
...
Expand Down

0 comments on commit 1e0c2df

Please sign in to comment.