Language: Cpp
BasedOnStyle: Google
AlignOperands: false
AllowAllArgumentsOnNextLine: false
AllowAllConstructorInitializersOnNextLine: false
AllowAllParametersOfDeclarationOnNextLine: false
AllowShortIfStatementsOnASingleLine: Never
AlwaysBreakAfterReturnType: TopLevel
# fails
BinPackParameters: false
BinPackArguments: false
BraceWrapping:   
  AfterClass: true
  AfterStruct: true
  AfterFunction: true
  BeforeElse: true
BreakBeforeBraces: Custom
# fails if all initializers fit on one line
BreakConstructorInitializers: AfterColon
# fails
ConstructorInitializerAllOnOneLineOrOnePerLine: false
IncludeBlocks: Preserve
