Fixup this atomic_bool again
Apparently atomic types aren't copy-assignable.
This commit is contained in:
parent
3d93fd3d53
commit
9ea4363145
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ struct invoked_function_data
|
|||
const std::function<void(void)>& f;
|
||||
|
||||
/** Whether execution in the main thread is complete. */
|
||||
std::atomic_bool finished = false;
|
||||
std::atomic_bool finished;
|
||||
|
||||
/** Stores any exception thrown during the execution of @ref f. */
|
||||
std::exception_ptr thrown_exception;
|
||||
|
|
Loading…
Add table
Reference in a new issue