Guillaume Dua

Results 12 comments of Guillaume Dua

As this issue is about a year-old, I'd like to ask if there is any hope to see clang-cl support one day on Godbolt ?

Looks like it is reconfiguring indeed : the message is If I run both command in a terminal, the behavior is the same as if I'd invoke them respectively using...

Yes indeed, as mentioned https://github.com/microsoft/vscode-cmake-tools/issues/2590#issuecomment-1153600142. I'll open an issue on Kitware side then, thanks for your time.

Also, about includes directories, some are missing *(still when using this project as dependency using FetchContent/ExternalProject_add/git-submodules/etc.)* Quick fix in the **building section** : add `target_include_directories` ```cmake ################################################################################ # Building #...

Really need some CMake's `option` directive to select which target are about to be part of the build, and which not. For instance, some projects which depends on Zookeeper-cpp may...

Ps : The issue _(if an issue it is for you as a library designer)_, is related to https://en.cppreference.com/w/cpp/thread/future/%7Efuture to me

In my opinion : ```cpp auto client = zk::client::connect(/*args...*/) ``` should be equivalent to : ```cpp auto client = zk::client{zk::connection::connect(/*args...*/)} ``` Having `zk::client::connect::get` blocking the current thread as long as...

FYI for now the quick-fix on consumer (my) side is that when `hljs.highlightAuto` returns such result, then call `hljs.highlightElement`. Not smthg clean tho. Post-modern C++ offers a large set of...

@joshgoebel Ofc sometimes it get wrong, but so far with simple experimentations I managed to make it work by reducing the languages subset. Collision between `cpp` and `bash` happens sometimes...