diff options
author | Lennart Poettering <lennart@poettering.net> | 2022-02-22 16:51:58 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2022-02-22 17:32:50 +0100 |
commit | 92148fb77766767fdb6ad6e52747317dae2aae85 (patch) | |
tree | 9e9d58e0dc97c56f9fcc3166e6691acff3dd1c2a /.clang-format | |
parent | Merge pull request #22584 from poettering/systemctl-verb-renamed (diff) | |
download | systemd-92148fb77766767fdb6ad6e52747317dae2aae85.tar.xz systemd-92148fb77766767fdb6ad6e52747317dae2aae85.zip |
clang-format: we actually typically use 16ch continuation indentation
We use 8 for blocks, and 16 for continuation in most cases afaics, hence
say so in .clang-format too
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.clang-format b/.clang-format index 8d50be42e7..6aa4e6a451 100644 --- a/.clang-format +++ b/.clang-format @@ -46,7 +46,7 @@ ColumnLimit: 109 CompactNamespaces: true ConstructorInitializerAllOnOneLineOrOnePerLine: true ConstructorInitializerIndentWidth: 8 -ContinuationIndentWidth: 8 +ContinuationIndentWidth: 16 Cpp11BracedListStyle: false ForEachMacros: - BITMAP_FOREACH |