aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.clang-format
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-09-13 13:47:30 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-09-14 00:18:49 +0300
commit418e850b2b1f76b204af87a5d930f5129055e09a (patch)
tree470f40f91b500ca1de712689d171433d9dd4d0d5 /.clang-format
parentcall_stack: try to fix __declspec(noinline) #3 (diff)
downloadwinapi-debug-418e850b2b1f76b204af87a5d930f5129055e09a.tar.gz
winapi-debug-418e850b2b1f76b204af87a5d930f5129055e09a.zip
call_stack: can't noinline w/ MSVC, let's try a DLL
Diffstat (limited to '')
-rw-r--r--.clang-format12
1 files changed, 7 insertions, 5 deletions
diff --git a/.clang-format b/.clang-format
index ea7323d..fb0d2f6 100644
--- a/.clang-format
+++ b/.clang-format
@@ -12,14 +12,16 @@ SpacesBeforeTrailingComments: 1
IncludeCategories:
- Regex: '^".*'
Priority: 1
- - Regex: '^<pdb/'
+ - Regex: '^<test_lib.*'
Priority: 2
- - Regex: '^<boost/'
+ - Regex: '^<pdb/'
Priority: 3
- - Regex: '^<SafeInt.hpp>$'
+ - Regex: '^<boost/'
Priority: 4
- - Regex: '^<.*\.h>$'
+ - Regex: '^<SafeInt.hpp>$'
Priority: 5
- - Regex: '.*'
+ - Regex: '^<.*\.h>$'
Priority: 6
+ - Regex: '.*'
+ Priority: 7
...