https://github.com/Kitware/CMake
Revision 90f91e4d217e64c5a68c8069500b83329eaee6b9 authored by Alex Turbov on 05 July 2019, 23:53:32 UTC, committed by Brad King on 15 July 2019, 12:17:36 UTC
1 parent 638383c
Raw File
Tip revision: 90f91e4d217e64c5a68c8069500b83329eaee6b9 authored by Alex Turbov on 05 July 2019, 23:53:32 UTC
Refactor: Replace a "magic" number w/ a named constant
Tip revision: 90f91e4
.clang-format
---
# This configuration requires clang-format version 6.0 exactly.
BasedOnStyle: Mozilla
AlignOperands: false
AllowShortFunctionsOnASingleLine: InlineOnly
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
BinPackArguments: true
BinPackParameters: true
BraceWrapping:
  AfterClass:      true
  AfterEnum:       true
  AfterFunction:   true
  AfterStruct:     true
  AfterUnion:      true
BreakBeforeBraces: Custom
ColumnLimit: 79
IndentPPDirectives: AfterHash
SortUsingDeclarations: false
SpaceAfterTemplateKeyword: true
...
back to top