aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/cxxsupp/libcxx/.clang-format
blob: 98dc9f06c43b666efe21d59cdd58da9dc6895c0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
BasedOnStyle: LLVM 
 
--- 
Language: Cpp 
Standard: Cpp03 
 
AlwaysBreakTemplateDeclarations: true 
PointerAlignment: Left 
 
# Disable formatting options which may break tests. 
SortIncludes: false 
ReflowComments: false 
 
# libc++'s preferred indentions of preprocessor statements. 
IndentPPDirectives: AfterHash 
 
# libc++ has some long names so we need more than the 80 column limit imposed by LLVM style, for sensible formatting 
ColumnLimit: 120 
---