Mathias Stearn
Mathias Stearn
I did a quick search through the code and it looks like it doesn't support `deps = msvc` and `msvc_deps_prefix`. We use this even on POSIX platforms as a simple...
It would make https://github.com/facebookexperimental/libunifex/blob/master/doc/api_reference.md easier to navigate.
**Describe the bug** I wrote a simple test to produce a file with 1 million 4-byte incrementing ints, and tried to compress with various settings. I tried big and little...
Ideally you wouldn't use that extension at all because clang silently doesn't emit object files for it, requiring `-x c++`. But if you think that is important, at the very...
**Is your feature request related to a problem? Please describe.** I'd like to be able to explore the hierarchy of types in my codebase. **Describe the solution you'd like** LSP...
It would be nice to be able to select a schema store schema interactively.
## What, How & Why? This is a better semantic fit for the data, and will make it easier to automatically generate bindings. ## ☑️ ToDos * [x] 📝 Changelog...
It isn't clear where the files are stored, so going there manually isn't easy. Even if it was, it would be nice to automate. Ideally it should go directly to...
MSVC now supports symmetric transfer, and I think gcc has since it introduced coroutines support. However, cppcoro currently only uses symmetric transfer for clang >= 7. https://github.com/lewissbaker/cppcoro/blob/391215262bd40d68ac6534810164131f5f9eb148/include/cppcoro/config.hpp#L33-L44 Rather than hard-coding...
When using inherited constructors the documentation for the original ctor should be shown. ```cpp struct Example { /** Documentation ... */ Example(int); }; struct SubClass : Example { using Example::Example;...