diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-09 00:14:16 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-09 00:14:16 +0300 |
commit | 8deb061efcfc33f5606d6a39e565a6779ccc2a15 (patch) | |
tree | 051bebd0445e6e9c044e11e6c5c4b841d8f0b2ae | |
parent | workflows/ci: use clang-format-11 (diff) | |
download | winapi-common-8deb061efcfc33f5606d6a39e565a6779ccc2a15.tar.gz winapi-common-8deb061efcfc33f5606d6a39e565a6779ccc2a15.zip |
clang-format: SafeInt is no more
Diffstat (limited to '')
-rw-r--r-- | .clang-format | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/.clang-format b/.clang-format index 2f5ef0e..d0eec4c 100644 --- a/.clang-format +++ b/.clang-format @@ -13,14 +13,12 @@ SpacesBeforeTrailingComments: 1 IncludeCategories: - Regex: '^".*' Priority: 1 - - Regex: '^<(winapi)/' + - Regex: '^<winapi\/' Priority: 2 - - Regex: '^<SafeInt\.hpp>$' - Priority: 3 - Regex: '^<boost\/' - Priority: 4 + Priority: 3 - Regex: '^<.*\.h>$' - Priority: 5 + Priority: 4 - Regex: '.*' - Priority: 6 + Priority: 5 ... |