From dada27c75ce97346c4b9603a3013d35ee77c3646 Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Fri, 20 Sep 2024 14:42:27 +0100 Subject: [PATCH] Fix pointer alignment in C++ --- roles/home-cli/files/clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/home-cli/files/clang-format b/roles/home-cli/files/clang-format index c948a1f..08962d8 100644 --- a/roles/home-cli/files/clang-format +++ b/roles/home-cli/files/clang-format @@ -2,7 +2,7 @@ Language: Cpp BasedOnStyle: Microsoft BreakBeforeBraces: Stroustrup -#PointerAlignment: Right // Uncomment for K&R C-style pointers. +PointerAlignment: Left # Change to Right for K&R C-style pointers. --- Language: CSharp BasedOnStyle: Microsoft