diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2019-12-03 22:22:23 +0100 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2019-12-03 22:22:23 +0100 |
commit | 05e72a33331bd9ad96ebbe4c844b94f0a5fb7390 (patch) | |
tree | d78c16fbededc66fecbd968ef6001a78c1c38e68 /.clang-format | |
parent | 155a8a5215ee98051fb28a138d21009d59d25ce4 (diff) | |
download | mariadb-git-05e72a33331bd9ad96ebbe4c844b94f0a5fb7390.tar.gz |
.clang-format - do not sort include files.
It is C++, not Java, the order of includes is often important.
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format index 725e4c67e02..5fc6ab23622 100644 --- a/.clang-format +++ b/.clang-format @@ -90,6 +90,7 @@ PenaltyExcessCharacter: 1000000 PenaltyReturnTypeOnItsOwnLine: 60 PointerAlignment: Right ReflowComments: true +SortIncludes: false SortUsingDeclarations: true SpaceAfterCStyleCast: true SpaceAfterLogicalNot: false |