Fixup 86792656ae (re-add ctor)

This commit is contained in:
Charles Dang 2018-05-27 22:02:57 +11:00
parent 86792656ae
commit 5588588b55

View file

@ -43,6 +43,13 @@ namespace
{
struct invoked_function_data
{
explicit invoked_function_data(const std::function<void(void)>& func)
: f(func)
, finished(false)
, thrown_exception()
{
}
/** The actual function to call. */
const std::function<void(void)>& f;