Nikita Kniazev

Results 256 comments of Nikita Kniazev

That's strange, it is the second project where `import config : requires ;` fails on CI, while locally is fine.

Fixing global shadowing warnings is on my TODO, but at very low priority due to little value and high intrusiveness of the fix.

Thanks for a reproducer, but I don't think I can offer any help beyond telling that it seems to be fixed in GCC 12.2, what you most likely already know?...

Massaging the parser helps avoid the bug for reproducer, so might be done something to Quickbook too https://godbolt.org/z/oGeqrP937

I don't want to devalue your work, after all thanks for at least trying to work on this. Probably you misunderstood me, it seems that `is_reflectable` is just a placeholder?...

https://github.com/boostorg/boost/commit/06c1e1ee6cde5231eda696b8d7bf957fd1333d93 was not mirrored to `src/contrib/boost.jam`

I hit the same issue recently. Did not even recognize that I have not updated the previous content until finding `~` folder.

Probably Python launcher `py` can be used to find a correct one. ``` >py -0 Installed Pythons found by py Launcher for Windows -3.7-64 * -3.6-64 -3.5-64 -2.7-64 -2.7-32 ```

https://github.com/boostorg/build/blob/7d9866256d1ce46abaf8355bb618cdebab9cfe62/src/tools/common.jam#L1024-L1034 The hardcoded toolsets list need to be be rewritten into `msvc`

Pulling the repro from #722 here: ```cpp #include #include #include int main() { namespace x3 = boost::spirit::x3; using namespace x3; char const* s = ""; struct A {}; struct B...