From 7a155ce913f42baf480b6cf9477f8185aadbcbf2 Mon Sep 17 00:00:00 2001 From: James Zern Date: Wed, 8 Oct 2025 18:57:03 -0700 Subject: [PATCH] .clang-format: add DerivePointerAlignment: false This will become the default in later versions of clang-format with --style=Google. This will normalize the pointer alignment in the fuzzers. Change-Id: I118aac9758ab2a1af82a907ee61f4a7af88209b1 --- .clang-format | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-format b/.clang-format index 0e6bbdf3..394685d3 100644 --- a/.clang-format +++ b/.clang-format @@ -1,3 +1,4 @@ --- Language: Cpp BasedOnStyle: Google +DerivePointerAlignment: false