From d164078b56e717856c6c81445b69d088cbb89d05 Mon Sep 17 00:00:00 2001 From: SimonFJ20 Date: Fri, 20 Mar 2026 13:33:34 +0100 Subject: [PATCH] use bool, not OnePerLine --- backend/.clang-format | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backend/.clang-format b/backend/.clang-format index 859ab4c..56e56b4 100644 --- a/backend/.clang-format +++ b/backend/.clang-format @@ -8,7 +8,10 @@ AllowShortFunctionsOnASingleLine: None BinPackArguments: false BinPackLongBracedList: false -BinPackParameters: OnePerLine + +# replace this when when github actions/ubuntu has a new enough LLVM version +# BinPackParameters: OnePerLine +BinPackParameters: true AllowAllArgumentsOnNextLine: true AllowAllParametersOfDeclarationOnNextLine: true