From 6ba1e6d6ae6720b5ef9643d217ba3f630ec8a34b Mon Sep 17 00:00:00 2001 From: Ocraftyone Date: Fri, 1 Dec 2023 10:32:48 -0500 Subject: [PATCH] Set PointerAlignment to Left (#2948) A lot of the codebase that I have seen typically uses a left justified pointer character. This would update the formatter to also follow that. --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 42ac9f1a0..6376be4d7 100644 --- a/.clang-format +++ b/.clang-format @@ -95,7 +95,7 @@ PenaltyBreakString: 600 PenaltyBreakTemplateDeclaration: 10 PenaltyExcessCharacter: 50 PenaltyReturnTypeOnItsOwnLine: 300 -PointerAlignment: Right +PointerAlignment: Left ReflowComments: true SortIncludes: false SortUsingDeclarations: false