diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-02-24 21:16:48 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-02-24 21:48:54 +0300 |
commit | a64964a2219bdfe5906b9de3838d0b97e1b1edb5 (patch) | |
tree | c2ddeeeecfda89eb6883dcef494a141c65a095f3 /.clang-format | |
parent | add README.md (diff) | |
download | winapi-common-a64964a2219bdfe5906b9de3838d0b97e1b1edb5.tar.gz winapi-common-a64964a2219bdfe5906b9de3838d0b97e1b1edb5.zip |
use SafeInt to make integers a bit more safe
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.clang-format b/.clang-format index 4e77355..2f5ef0e 100644 --- a/.clang-format +++ b/.clang-format @@ -15,10 +15,12 @@ IncludeCategories: Priority: 1 - Regex: '^<(winapi)/' Priority: 2 - - Regex: '^<boost\/' + - Regex: '^<SafeInt\.hpp>$' Priority: 3 - - Regex: '^<.*\.h>$' + - Regex: '^<boost\/' Priority: 4 - - Regex: '.*' + - Regex: '^<.*\.h>$' Priority: 5 + - Regex: '.*' + Priority: 6 ... |