clang-format: break after template declarations

This commit is contained in:
Bruno BELANYI 2022-03-12 01:09:47 +01:00
parent bd072e1025
commit 382f374031
1 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,9 @@ AccessModifierOffset: -4
BreakBeforeBinaryOperators: All
BreakBeforeTernaryOperators: true
# Template declarations should be on their own lines
AlwaysBreakTemplateDeclarations: Yes
# Aesthetic
AlignOperands: AlignAfterOperator
---