From 382f374031587270fc32c2fa42a869fe22e77e92 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 12 Mar 2022 01:09:47 +0100 Subject: [PATCH] clang-format: break after template declarations --- .clang-format | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.clang-format b/.clang-format index 19c58aa..7d24a37 100644 --- a/.clang-format +++ b/.clang-format @@ -18,6 +18,9 @@ AccessModifierOffset: -4 BreakBeforeBinaryOperators: All BreakBeforeTernaryOperators: true +# Template declarations should be on their own lines +AlwaysBreakTemplateDeclarations: Yes + # Aesthetic AlignOperands: AlignAfterOperator ---