[Mod] updated autocxxpy: added noexcept for async_dispatch_exception::what()

This commit is contained in:
nanoric 2019-07-05 09:03:56 +08:00
parent 50a212bf5a
commit 9db0dfdcbb

View File

@ -94,7 +94,7 @@ namespace autocxxpy
return what();
}
virtual char const* what() const override
virtual char const* what() const noexcept override
{
return _what.c_str();
}