chausner
chausner
Any chance this could be updated and merged? Once there is CMake support, it should be trivial to publish the library for vcpkg (#112).
I agree having the library in vcpkg would be great!
There's a port for vcpkg available now: https://github.com/microsoft/vcpkg/pull/10693 Big thanks to @luncliff!
I don't think you can use it with gcc right now without modifying the library. Luckily, it should be enough to simply replace all occurrences of `std::experimental` and ``. I...
It's unclear to me whether the latest MSVC versions support this by now or not. I have not tried yet with cppcoro but wrote my own promise and task classes....
> Yes. The front-end part was implemented, but, back end is not (hence the stack overflow). It is scheduled to be done soon-ish Thanks for the clarification. Looking forward to...
Yes, this fixes the build.
The following workaround seems to compile, tested using [Compiler Explorer](https://godbolt.org/z/Mr3P16): ```c++ template struct metamap; template struct metamap : public M1, Ms... { template using TestType = typename M::test_type; metamap(TestType&& m,...
The problem is with the post-increment operator in this line: ```c++ V(current) += user[V(i)++]; ``` Changing it to ```c++ V(current) += user[V(i)]; V(i)++; ``` makes the sample work. The root...
@stbrumme Any chance this fix can be merged? It's been unresolved for a long time but could be fixed easily.