Skip to content

Commit

Permalink
Fixup 8679265 (re-add ctor)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vultraz committed May 27, 2018
1 parent 8679265 commit 5588588
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/events.cpp
Expand Up @@ -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;

Expand Down

0 comments on commit 5588588

Please sign in to comment.