aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.clang-format
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-02-24 21:16:48 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-02-24 21:48:54 +0300
commita64964a2219bdfe5906b9de3838d0b97e1b1edb5 (patch)
treec2ddeeeecfda89eb6883dcef494a141c65a095f3 /.clang-format
parentadd README.md (diff)
downloadwinapi-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-format8
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
...