hia3

Results 7 comments of hia3

Thank you for the quick reply. I tried following settings: let g:asyncrun_timer = 100 - 84sec let g:asyncrun_timer = 150 - 59sec let g:asyncrun_timer = 200 - 50sec let g:asyncrun_timer...

Just for the record, I'm not using `toolset=clang-win`. I think this whole idea of `clang-cl` is stupid. I wish this bug-ridden `clang-win.jam` never existed.

Btw, adding #define BOOST_SPIRIT_X3_DEBUG will break this sample program again.

Why not? I'm not saying "you have to". This might be the result of simplification of some existing code. Do you want to not to compile simpler version of the...

Btw, `ast::a3` is unchanged from my previous pull request (it was single element seqence too). Only thing changed is a3 rule from this: ``` auto a3_v1 = rule{} = *(a2...

It crashes most likely because a local variable is captured in the static lambda. https://github.com/llvm/llvm-project/blob/bf895c714e1f8a51c1e565a75acf60bf7197be51/clang-tools-extra/clang-tidy/boost/UseRangesCheck.cpp#L208

`` violates [SF.11: Header files should be self-contained](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#rs-contained). It also violates SRP principle - instead, there should be multiple files: ``, ``, etc. XR_USE_* macros should not exist - if...