Fixup 86792656ae
(re-add ctor)
This commit is contained in:
parent
86792656ae
commit
5588588b55
1 changed files with 7 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue