Fixup b06855e604 (re-add ctor)

This commit is contained in:
Charles Dang 2018-05-27 22:02:57 +11:00
parent b06855e604
commit aebf9be79d

View file

@ -42,6 +42,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;