From 1edb34b313203788f77d1921d26c3e66a6a2e78e Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Wed, 12 Jun 2024 15:15:54 +1200 Subject: [PATCH] clang-format: remove SpacesInParens It's exclusive to clang-format 17 which is too new at the moment. --- .clang-format | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 1e6187e..a747253 100644 --- a/.clang-format +++ b/.clang-format @@ -83,7 +83,8 @@ SpaceBeforeAssignmentOperators: true SpaceBeforeParens: ControlStatements SpacesBeforeTrailingComments: 1 SpacesInCStyleCastParentheses: false -SpacesInParens: Never +# clang-format 17 +#SpacesInParens: Never SpacesInSquareBrackets: false TabWidth: 4 UseTab: ForContinuationAndIndentation