aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.clang-format
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-03-24 19:22:40 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-03-27 11:25:22 +0300
commit10b3c9e5a8ce46cfbc3c80042fcaf6079f6a8a34 (patch)
tree13cb9beac308afab5ec1188bb73f28beb64eafe2 /.clang-format
parentfix a bug where I failed to account for TCHARs, again (diff)
downloadwinapi-debug-10b3c9e5a8ce46cfbc3c80042fcaf6079f6a8a34.tar.gz
winapi-debug-10b3c9e5a8ce46cfbc3c80042fcaf6079f6a8a34.zip
add some unit tests
Diffstat (limited to '.clang-format')
-rw-r--r--.clang-format10
1 files changed, 6 insertions, 4 deletions
diff --git a/.clang-format b/.clang-format
index 79d4ce0..ea7323d 100644
--- a/.clang-format
+++ b/.clang-format
@@ -12,12 +12,14 @@ SpacesBeforeTrailingComments: 1
IncludeCategories:
- Regex: '^".*'
Priority: 1
- - Regex: '^<boost/'
+ - Regex: '^<pdb/'
Priority: 2
- - Regex: '^<SafeInt.hpp>$'
+ - Regex: '^<boost/'
Priority: 3
- - Regex: '^<.*\.h>$'
+ - Regex: '^<SafeInt.hpp>$'
Priority: 4
- - Regex: '.*'
+ - Regex: '^<.*\.h>$'
Priority: 5
+ - Regex: '.*'
+ Priority: 6
...