Fix build with Visual Studio 2013
This commit is contained in:
parent
651e975438
commit
244384218b
1 changed files with 2 additions and 1 deletions
|
@ -45,9 +45,10 @@ struct invoked_function_data
|
|||
{
|
||||
explicit invoked_function_data(const std::function<void(void)>& func)
|
||||
: f(func)
|
||||
, finished(false)
|
||||
, finished()
|
||||
, thrown_exception()
|
||||
{
|
||||
finished = false;
|
||||
}
|
||||
|
||||
/** The actual function to call. */
|
||||
|
|
Loading…
Add table
Reference in a new issue