Merge branch 'jt/clang-format-foreach-wo-space-before-parenthesis' into next

Clang-format update to let our control macros formatted the way we
had them traditionally, e.g., "for_each_string_list_item()" without
space before the parentheses.

* jt/clang-format-foreach-wo-space-before-parenthesis:
  clang-format: exclude control macros from SpaceBeforeParens
next
Junio C Hamano 2025-09-30 14:46:13 -07:00
commit c32668ab36
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ SpaceBeforeCaseColon: false
# f();
# }
# }
SpaceBeforeParens: ControlStatements
SpaceBeforeParens: ControlStatementsExceptControlMacros

# Don't insert spaces inside empty '()'
SpaceInEmptyParentheses: false