Fix build with Visual Studio 2013

This commit is contained in:
Jyrki Vesterinen 2018-06-09 15:16:21 +03:00
parent 651e975438
commit 244384218b

View file

@ -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. */