diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-03-24 19:22:40 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-03-27 11:25:22 +0300 |
commit | 10b3c9e5a8ce46cfbc3c80042fcaf6079f6a8a34 (patch) | |
tree | 13cb9beac308afab5ec1188bb73f28beb64eafe2 /.clang-format | |
parent | fix a bug where I failed to account for TCHARs, again (diff) | |
download | winapi-debug-10b3c9e5a8ce46cfbc3c80042fcaf6079f6a8a34.tar.gz winapi-debug-10b3c9e5a8ce46cfbc3c80042fcaf6079f6a8a34.zip |
add some unit tests
Diffstat (limited to '')
-rw-r--r-- | .clang-format | 10 |
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 ... |