diff options
author | Norbert Lange <nolange79@gmail.com> | 2020-07-19 01:40:06 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-07-19 15:44:04 +0200 |
commit | d3f45d130e21b8edf37db34e333b76bb001e918b (patch) | |
tree | f2ae826063b01126b18113474958981085bfc66a /.clang-format | |
parent | 4573592ddf0697ff1bdf45610b292ace27dc2b96 (diff) | |
download | systemd-d3f45d130e21b8edf37db34e333b76bb001e918b.tar.gz |
clang-format: set Break afer enum to false
if set to true, the opening bracket will be moved to the next line.
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 ab1954935c..ab27960a67 100644 --- a/.clang-format +++ b/.clang-format @@ -34,7 +34,7 @@ AlwaysBreakTemplateDeclarations: Yes BinPackArguments: false BinPackParameters: false BraceWrapping: - AfterEnum: true + AfterEnum: false SplitEmptyFunction: false SplitEmptyRecord: false SplitEmptyNamespace: false |