We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This code fails to compile:
auto f = stlab::make_ready_future(std::make_unique(4));
Judging from stlab::async, the return in make_ready_future should probably be
return std::move(p.second);
The text was updated successfully, but these errors were encountered:
Many thanks for spotting this. We will fix it with the next patch.
Sorry, something went wrong.
40a189f
Merge pull request #235 from FelixPetriconi/Fix220
995fd92
Fix #220
Fixed in 1.4.1
FelixPetriconi
No branches or pull requests
This code fails to compile:
auto f = stlab::make_ready_future(std::make_unique(4));
Judging from stlab::async, the return in make_ready_future should probably be
return std::move(p.second);
The text was updated successfully, but these errors were encountered: