Commit 9c9a3751 authored by Tom Niget's avatar Tom Niget

Add workaround

parent 26c320d7
......@@ -40,6 +40,11 @@ namespace typon
_valid = true;
}
void return_value(T&& expr) noexcept
{
return_value<T>(std::move(expr));
}
void unhandled_exception() noexcept
{
if constexpr(std::is_assignable_v<E, std::exception_ptr>)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment