forked from TartanLlama/expected
Move the error value when throwing an exception in .value rval overloads
Fixes #55
This commit is contained in:
@@ -1907,14 +1907,14 @@ public:
|
||||
detail::enable_if_t<!std::is_void<U>::value> * = nullptr>
|
||||
TL_EXPECTED_11_CONSTEXPR const U &&value() const && {
|
||||
if (!has_value())
|
||||
detail::throw_exception(bad_expected_access<E>(err().value()));
|
||||
detail::throw_exception(bad_expected_access<E>(std::move(err()).value()));
|
||||
return std::move(val());
|
||||
}
|
||||
template <class U = T,
|
||||
detail::enable_if_t<!std::is_void<U>::value> * = nullptr>
|
||||
TL_EXPECTED_11_CONSTEXPR U &&value() && {
|
||||
if (!has_value())
|
||||
detail::throw_exception(bad_expected_access<E>(err().value()));
|
||||
detail::throw_exception(bad_expected_access<E>(std::move(err()).value()));
|
||||
return std::move(val());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user