blob: 4598f60a0090ecf6ceea3b43d078ccdfcc10d185 [file] [log] [blame]
Eric Fiseliere93265a2016-11-15 20:21:30 +00001BasedOnStyle: LLVM
Eric Fiselierb5d9f442016-11-23 01:18:56 +00002
3---
4Language: Cpp
Eric Fiselierf8d4a132017-04-15 02:45:43 +00005Standard: Cpp03
Eric Fiselierb5d9f442016-11-23 01:18:56 +00006
7AlwaysBreakTemplateDeclarations: true
Saleem Abdulrasool2f31a162017-01-03 04:23:52 +00008PointerAlignment: Left
Eric Fiselier1500ba72016-12-09 03:17:25 +00009
10# Disable formatting options which may break tests.
11SortIncludes: false
Eric Fiseliera473abc2016-12-09 03:18:45 +000012ReflowComments: false
Christopher Di Bella29e72922021-03-31 22:46:28 +000013
Mark de Wever795628c2021-09-15 18:29:22 +020014# libc++'s preferred indentions of preprocessor statements.
15IndentPPDirectives: AfterHash
16
Christopher Di Bella29e72922021-03-31 22:46:28 +000017# libc++ has some long names so we need more than the 80 column limit imposed by LLVM style, for sensible formatting
18ColumnLimit: 120
Eric Fiselierb5d9f442016-11-23 01:18:56 +000019---