Mercurial > hg > CbC > CbC_llvm
annotate libcxxabi/.clang-format @ 252:1f2b6ac9f198 llvm-original
LLVM16-1
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 18 Aug 2023 09:04:13 +0900 |
parents | c4bab56944e8 |
children |
rev | line source |
---|---|
150 | 1 BasedOnStyle: LLVM |
2 | |
3 Language: Cpp | |
4 | |
5 AlwaysBreakTemplateDeclarations: true | |
6 PointerAlignment: Left | |
7 | |
8 # Disable formatting options which may break tests. | |
9 SortIncludes: false | |
10 ReflowComments: false | |
236 | 11 |
12 IndentPPDirectives: AfterHash | |
13 | |
14 # libc++ has some long names so we need more than the 80 column limit imposed by LLVM style, for sensible formatting | |
15 ColumnLimit: 120 |