From 069a37c3e826d79c599e399976a5f4b18f38d50d Mon Sep 17 00:00:00 2001 From: Szymon Czapracki Date: Thu, 11 Dec 2025 15:25:39 +0100 Subject: [PATCH] ci: Force clang-format to check empty function brace split Previously function braces were forced to be in one-line We prefer to keep the braces separated by newline --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 193a5f6b51..6df14529da 100644 --- a/.clang-format +++ b/.clang-format @@ -23,7 +23,7 @@ BraceWrapping: BeforeCatch: false BeforeElse: false IndentBraces: false - SplitEmptyFunction: false + SplitEmptyFunction: true SplitEmptyRecord: false SplitEmptyNamespace: false