q icon indicating copy to clipboard operation
q copied to clipboard

A platform-independent promise library for C++, implementing asynchronous continuations.

Results 11 q issues
Sort by recently updated
recently updated
newest added

Hi, I recently tried to use this library for a small project but got a compile error for `q/pp.hp` on line 126 stating : ``` error: '__FUNCSIG__' was not declared...

My app runs core async code on C++ (using web assembly). I want to call a c++ async function (returns Defer) from js . I can bind Data types such...

It builds on MSVC 14, GCC7 and Apple Clang 11. I believe it won't build on GCC9 too. This is the error I get on MSVC16: ``` 10-Jun-2020 20:38:10 |...

Hello, I'm trying to use libq to create a timeout for a function that may take too long to complete. So the case is that if the function completes in...

Hello, I'm unable to link your lib with one of mine. I cannot use it if this code is present : ``` static auto ec = q::make_execution_context< q::blocking_dispatcher >( "main"...

What is the LibQ equivalent to std::async? More specifically: std::future f = std::async([]{ // ... return 42; })); int i = f.get(); when the function blocks until f.get() returns with...

I updated visual studio 2017, and now I get compilation errors. For example: Severity Code Description Project File Line Suppression State Error C2065 'value': undeclared identifier q c:\users\maora\downloads\q-master\q-master\libs\q\include\q\promise\defer.hpp 208

Hi, my clang version is: ``` clang++ --version Apple LLVM version 9.0.0 (clang-900.0.39.2) Target: x86_64-apple-darwin16.7.0 Thread model: posix InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin ``` And so I'm trying to compile this example: ```...