comparison mupdf-source/thirdparty/zxing-cpp/.clang-format @ 3:2c135c81b16c

MERGE: upstream PyMuPDF 1.26.4 with MuPDF 1.26.7
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:44:09 +0200
parents b50eed0cc0ef
children
comparison
equal deleted inserted replaced
0:6015a75abc2d 3:2c135c81b16c
1 ---
2 Language: Cpp
3 Standard: c++17
4 BasedOnStyle: LLVM
5
6 IndentWidth: 4
7 TabWidth: 4
8 UseTab: ForContinuationAndIndentation # ForIndentation
9
10 AccessModifierOffset: -4
11 ColumnLimit: 135
12
13 #AlignConsecutiveAssignments: true
14 AlignConsecutiveBitFields: true
15 AlignEscapedNewlines: DontAlign
16 AlignTrailingComments: true
17
18 AllowShortCaseLabelsOnASingleLine: true
19 AllowShortFunctionsOnASingleLine: Inline
20 #AllowShortLambdasOnASingleLine: Inline
21 AllowShortEnumsOnASingleLine: true
22 AllowAllArgumentsOnNextLine: true
23 AllowAllParametersOfDeclarationOnNextLine: true
24
25 AlwaysBreakAfterDefinitionReturnType: None
26 AlwaysBreakTemplateDeclarations: Yes
27 BreakBeforeBraces: Custom
28 BraceWrapping:
29 AfterClass: true
30 AfterEnum: true
31 AfterStruct: true
32 AfterUnion: true
33 AfterFunction: true
34 SplitEmptyFunction: false
35 BreakBeforeBinaryOperators: NonAssignment
36 BreakBeforeTernaryOperators: true
37 ConstructorInitializerAllOnOneLineOrOnePerLine: true
38 FixNamespaceComments: true
39 IncludeBlocks: Regroup
40 KeepEmptyLinesAtTheStartOfBlocks: false
41 PointerAlignment: Left
42 ReflowComments: true
43 SortIncludes: true