Yaroslav
Yaroslav
I have a similar issue in https://github.com/YarikTH/ureact when tried to use this generator. And it seems that I found the root of at least my problem. It's because I started...
Some thoughts about topic. I think that implementing named library feature is doable using custom filesystem wrapper. Each time preprocessor tries to read "
One additional way can be used is recteation of include tree: 1. When we see https link, we download the file and place it into some folder. For example https://raw.githubusercontent.com/fmtlib/fmt/master/include/fmt/core.h...
Normally graphics API supports [glFlush](https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glFlush.xml) command analog that allows to wait for all GPU commands to be executed. So you can do something straightforward like: ```cpp TEST_CASE("TestRenderer") { MyRenderer r;...
It seems that proper support for std::function overload for v8pp::convert require including full content of call_from_v8.hpp and call_v8.hpp. It can be easily done from the technical point of view, but...
Better idea: introduce node visiting feature. Pass visitor like functor to receive full info about used nodes. Like ```cpp struct F { void operator()( node_info::id ); void operator()( node_info::depth );...
Maybe reimplementing of logging interface is fine too.
I like the library, even not yet used it. It has a lot of stars, it highly probably does exactly what I need, but the lack of releases is a...
How many programmers need to support templated BasicJsonType in NLOHMANN_DEFINE_TYPE_MEOW? This macro is cursed
> I thought you might try writing a widget to consolidate the different files into one file as a workaround, and build it regularly via github action hope this will...