Alexander Karzhenkov
Alexander Karzhenkov
Here is possible solution (or workaround) for issues in PR #2117, #2213. The problem is caused by "wrong" user defined conversion selected by overload resolution. Compiler selects a converting constructor...
Closes #534
The following program reports an exception of unknown type when `REDIS_PLUS_PLUS_ASYNC_FUTURE` is set to `boost` and there is no running Redis server: ```c++ #include #include int main() { sw::redis::AsyncRedis redis("tcp://127.0.0.1:6379");...
There are some problems when using `cppcoro` from an external project: - the installed library cannot be used if the final version of C++20 coroutines is not supported by toolset;...
Resolves #25. The crash is caused by stack overflow. Coroutine contnuations can be nested, and the depth of nesting can exceed the available stack space. Such a nesting occurs if...