From 42100fe98d786b8b369af62c3be8bf1a7157ea6a Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 20 Aug 2021 02:09:24 +0200 Subject: [PATCH] clang-format: do not indent access modifiers --- .clang-format | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.clang-format b/.clang-format index 355ff34..b183aa9 100644 --- a/.clang-format +++ b/.clang-format @@ -10,4 +10,7 @@ PointerAlignment: Left # Short functions should not be on a single line, unless empty AllowShortFunctionsOnASingleLine: Empty + +# Make them level +AccessModifierOffset: -4 ---