From: Alex Richardson Date: Wed, 14 Sep 2022 23:19:06 +0000 (+0000) Subject: clang-format: add spaces before parens X-Git-Tag: dbus-1.15.0~4^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2f3f0123c0eb0fdcb68f9c5b7850b068d36eccc;p=thirdparty%2Fdbus.git clang-format: add spaces before parens Previously, clang-format was not adding a space after sizeof. --- diff --git a/.clang-format b/.clang-format index 6c1859a65..93b8bfd75 100644 --- a/.clang-format +++ b/.clang-format @@ -3,3 +3,4 @@ AlwaysBreakAfterDefinitionReturnType: All BreakBeforeBinaryOperators: None BinPackParameters: false SpaceAfterCStyleCast: true +SpaceBeforeParens: Always