]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - .clang-format
Vendor import of libc++ trunk r291012:
[FreeBSD/FreeBSD.git] / .clang-format
1 BasedOnStyle: LLVM
2
3 ---
4 Language: Cpp
5
6 AlwaysBreakTemplateDeclarations: true
7 AllowShortFunctionsOnASingleLine: Inline
8 BreakBeforeBraces: Custom
9 BraceWrapping:
10   AfterClass: true
11   AfterFunction: true
12 PointerAlignment: Left
13
14 # Disable formatting options which may break tests.
15 SortIncludes: false
16 ReflowComments: false
17 ---