blob: 782e2b8634a5141690c06568da6e970aafee1876 [file] [log] [blame]
Eric Fiselier746d0082016-11-15 20:21:30 +00001BasedOnStyle: LLVM
Eric Fiselieref3060e2016-11-23 01:18:56 +00002
3---
4Language: Cpp
5
6AlwaysBreakTemplateDeclarations: true
Saleem Abdulrasoolc79fa042017-01-03 04:23:52 +00007AllowShortFunctionsOnASingleLine: Inline
8BreakBeforeBraces: Custom
9BraceWrapping:
10 AfterClass: true
11 AfterFunction: true
12PointerAlignment: Left
Eric Fiselierf178c262016-12-09 03:17:25 +000013
14# Disable formatting options which may break tests.
15SortIncludes: false
Eric Fiselier5a6eaee2016-12-09 03:18:45 +000016ReflowComments: false
Eric Fiselieref3060e2016-11-23 01:18:56 +000017---