From 70b9db569b932630e431b921b01bde50a37bbdb5 Mon Sep 17 00:00:00 2001 From: Uwe Date: Fri, 11 Nov 2022 05:12:47 +0100 Subject: [PATCH] [skip ci] [.clang] set pointer style to left - since we added the .clang-format file we used Left for the pointer asterisk. It is annoying to get now all the time automatic diffs because the -clang file uses Right. --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index dbcd62766b..30d9d73e01 100644 --- a/.clang-format +++ b/.clang-format @@ -44,7 +44,7 @@ MaxEmptyLinesToKeep: 2 NamespaceIndentation: None ObjCSpaceAfterProperty: false ObjCSpaceBeforeProtocolList: true -PointerAlignment: Right +PointerAlignment: Left ReflowComments: false SpaceAfterCStyleCast: false SpaceAfterLogicalNot: false