Async future::then type fix

This commit is contained in:
Nikita Lisitsa 2021-07-02 15:18:38 +03:00
parent 585fff7683
commit e5c806a198

View file

@ -30,7 +30,7 @@ namespace psemek::async
template <typename T>
struct then_function
{
using type = util::function<void(T)>;
using type = util::function<void(T &)>;
};
template <>