Andrey Semashev

Results 222 comments of Andrey Semashev

Any comments? It might be a good time for a tool like this since 1.87 release is preparing.

Also, the explicit code block is not highlighted as a code block delimited with indentation. I.e. in the above snippet, only the `void foo();` line is highlighted as a code...

I'm not sure how I would use that.

> If you're not sure _how_ you would use it, you can add my repo as a remote to your local clone and checkout the branch that the PR uses....

Actually, I didn't test it properly the first time, as Sublime just restored the original AsciiDoc plugin and used that instead of the linked one. But after fixing that, the...

As far as I can see, Boost.Build does not discriminate between the legacy Intel compiler and the newer LLVM-based one - both are identified as `intel-linux` (on Linux platform). So...

There needs to be a way to distinguish the legacy Intel compiler and the newer LLVM-based one, as their command line options differ. For example, there is [this](https://github.com/boostorg/log/issues/244) Boost.Log issue,...

I think, instead of adding a bunch of headers in `include/boost/config/std`, a different approach would be better. Add a new macro in Boost.Config: ``` #if defined(BOOST_USE_MODULES) #define BOOST_STD_HEADER(x) #else #define...

In my libraries, I'm mirroring C++ defines to CMake options, so one would specify e.g. `-DBOOST_USE_WINAPI_VERSION=0x0601` in cmake command line and that translates to the equivalent C++ define. I'll add...

Done in https://github.com/boostorg/winapi/commit/c5fb9c86e8b9ea460fc6d7255d15d69d4d2705ae.