summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Gräsman <kim.grasman@gmail.com>2023-04-16 12:41:10 +0200
committerKim Gräsman <kim.grasman@gmail.com>2023-04-16 12:41:10 +0200
commit5317d11d3eefe99254d2d41c165e8402c3fb2aba (patch)
tree04c1690cebd9fc68b43828ba6d2ed43dd09c3ba5
parent91364a612eeff4bf6c4d0171b8be0974d7f0c67b (diff)
Disable DerivePointerAlignment clang-format option
This option is on by default for Google style, which means clang-format will be very conservative when formatting pointer alignment/binding. Disable it to help incrementally move towards desired style.
-rw-r--r--.clang-format1
1 files changed, 1 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format
index e993064..d5c185b 100644
--- a/.clang-format
+++ b/.clang-format
@@ -5,5 +5,6 @@ AllowShortFunctionsOnASingleLine: false
AllowShortCaseLabelsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
CommentPragmas: '^ IWYU:'
+DerivePointerAlignment: false
SortIncludes: false
SortUsingDeclarations: false