diff options
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.clang-format b/.clang-format index 9f015c9..ee83265 100644 --- a/.clang-format +++ b/.clang-format @@ -12,21 +12,21 @@ AlwaysBreakTemplateDeclarations: MultiLine BinPackArguments: false BinPackParameters: false BraceWrapping: - AfterClass: true + AfterClass: false AfterControlStatement: MultiLine - AfterEnum: true - AfterFunction: true + AfterEnum: false + AfterFunction: false AfterNamespace: false AfterObjCDeclaration: false - AfterStruct: true - AfterUnion: true + AfterStruct: false + AfterUnion: false AfterExternBlock: false BeforeCatch: false BeforeElse: false IndentBraces: false - SplitEmptyFunction: true - SplitEmptyRecord: true - SplitEmptyNamespace: true + SplitEmptyFunction: false + SplitEmptyRecord: false + SplitEmptyNamespace: false BreakBeforeBraces: Custom BreakBeforeTernaryOperators: true BreakConstructorInitializers: BeforeComma |