forked from OSchip/llvm-project
clang-format: tweak configuration
Update the configuration to reflect the style more accurately. Pointers are tied to the left. Braces are split on classes/structs and functions. llvm-svn: 290857
This commit is contained in:
parent
833094463c
commit
720fb14cdd
|
@ -4,6 +4,12 @@ BasedOnStyle: LLVM
|
|||
Language: Cpp
|
||||
|
||||
AlwaysBreakTemplateDeclarations: true
|
||||
AllowShortFunctionsOnASingleLine: Inline
|
||||
BreakBeforeBraces: Custom
|
||||
BraceWrapping:
|
||||
AfterClass: true
|
||||
AfterFunction: true
|
||||
PointerAlignment: Left
|
||||
|
||||
# Disable formatting options which may break tests.
|
||||
SortIncludes: false
|
||||
|
|
Loading…
Reference in New Issue