From 879a5f6b5e0c259571e7dbe0d7633a19e982148d Mon Sep 17 00:00:00 2001 From: Andres Noetzli Date: Tue, 26 Feb 2019 22:46:04 +0000 Subject: [PATCH] ClangFormat: Disable DerivePointerAlignment (#2842) The option `DerivePointerAlignment` tries to automatically determine the pointer alignment used by the input. In our case, we would eventually like the code base to be consistent throughtout, so this commit disables that option. --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index cf788cb6b..01c8eeb25 100644 --- a/.clang-format +++ b/.clang-format @@ -15,5 +15,5 @@ BraceWrapping: BeforeCatch: true BeforeElse: true BreakBeforeBraces: Custom +DerivePointerAlignment: false ... - -- 2.30.2