From 0ed3e6d0fed958e03a294e674dd331bbced886f2 Mon Sep 17 00:00:00 2001 From: Uwe Date: Fri, 11 Nov 2022 04:02:47 +0100 Subject: [PATCH] [.clang] use line break after case - we used in the past line breaks after a case statements to better overview. This should be kept. --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index d05f61ecd4..dbcd62766b 100644 --- a/.clang-format +++ b/.clang-format @@ -8,7 +8,7 @@ AllowAllArgumentsOnNextLine: false AllowAllConstructorInitializersOnNextLine: false AllowAllParametersOfDeclarationOnNextLine: false AllowShortBlocksOnASingleLine: Always -AllowShortCaseLabelsOnASingleLine: true +AllowShortCaseLabelsOnASingleLine: false AllowShortFunctionsOnASingleLine: All AllowShortIfStatementsOnASingleLine: Never AllowShortLambdasOnASingleLine: All