Skip to content

Commit

Permalink
Remove newlines before opening brackets of control statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jakelang committed Mar 15, 2018
1 parent 99dc071 commit 1da9ff7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ AlignAfterOpenBracket: DontAlign
BinPackParameters: true
BraceWrapping:
AfterClass: true
AfterControlStatement: true
AfterEnum: true
AfterControlStatement: false
AfterEnum: false
AfterFunction: true
AfterNamespace: true
AfterObjCDeclaration: true
AfterStruct: true
AfterUnion: true
BeforeCatch: true
BeforeElse: true
AfterStruct: false
AfterUnion: false
BeforeCatch: false
BeforeElse: false
SplitEmptyFunction: false
BreakBeforeBraces: Custom
BreakBeforeTernaryOperators: false
Expand Down

0 comments on commit 1da9ff7

Please sign in to comment.