Clang-format changes to pointer/reference positioning

This commit is contained in:
Stephen Shelton 2020-04-07 12:11:51 -06:00
parent 95ec728079
commit 9c68fa7316
No known key found for this signature in database
GPG Key ID: EE4BADACCE8B631C
1 changed files with 4 additions and 0 deletions

View File

@ -31,6 +31,10 @@ UseTab: Never
SortIncludes: false
ColumnLimit: 100
# treat pointers and reference declarations as if part of the type
DerivePointerAlignment: false
PointerAlignment: Left
# when wrapping function calls/declarations, force each parameter to have its own line
BinPackParameters: 'false'
BinPackArguments: 'false'