Fixed CVIdeo::quit being swallowed in invoked_function_data::call

This commit is contained in:
Charles Dang 2018-05-27 22:20:51 +11:00
parent aebf9be79d
commit 031f856f31

View file

@ -64,6 +64,7 @@ struct invoked_function_data
f();
} catch(const CVideo::quit&) {
// Handle this exception in the main thread.
throw;
} catch(...) {
thrown_exception = std::current_exception();
}