Mercurial > hg > CbC > CbC_llvm
annotate libcxx/.clang-format @ 225:f7655407a6ba
remove unnecessary files
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 19 Jul 2021 03:48:36 +0900 |
parents | 2e18cbf3894f |
children | c4bab56944e8 |
rev | line source |
---|---|
150 | 1 BasedOnStyle: LLVM |
2 | |
3 --- | |
4 Language: Cpp | |
5 Standard: Cpp03 | |
6 | |
7 AlwaysBreakTemplateDeclarations: true | |
8 PointerAlignment: Left | |
9 | |
10 # Disable formatting options which may break tests. | |
11 SortIncludes: false | |
12 ReflowComments: false | |
207 | 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 | |
150 | 16 --- |