From 51e15a29e33410bd458ad47443fb07b3cb84567e Mon Sep 17 00:00:00 2001 From: MaartenS11 Date: Wed, 15 Apr 2026 16:30:03 +0200 Subject: [PATCH] Explicitly set clang-format PointerAlignment It seems a recent clang-format change causes pointers to sometimes be left aligned while all our code uses right aligned pointers. This enforces right alignment at all times. --- .clang-format | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-format b/.clang-format index 84f9c6ae0..377d816ad 100644 --- a/.clang-format +++ b/.clang-format @@ -1,2 +1,3 @@ BasedOnStyle: Google IndentWidth: 4 +PointerAlignment: Right