Fix memcheck/tests/darwin/Makefile.am EXTRA_DIST typo
[valgrind.git] / .clang-format
blob4450e737ac893b189141c530330cb2a82b538590
1 ---
2 Language: Cpp
3 BasedOnStyle: LLVM
5 AlignConsecutiveAssignments: true
6 AlignConsecutiveDeclarations: true
7 AlignConsecutiveMacros: true
8 AllowAllParametersOfDeclarationOnNextLine: true
9 BinPackParameters: false
10 BreakBeforeBraces: Linux
11 ContinuationIndentWidth: 3
12 IndentWidth: 3
13 PointerAlignment: Left
14 # Mark the VG_(), ML_() and tool macros as type declarations which they are
15 # sufficiently close to, otherwise clang-format gets confused by them.
16 TypenameMacros: [VG_, ML_, CLG_, DRD_, HG_, MC_]
17 ...