[result] try to fix type conversion on s390x

pull/1068/head
Tim Stack 2 years ago
parent 1a92701cb3
commit e135cf3334

@ -859,11 +859,11 @@ struct Result {
template<typename U = T>
typename std::enable_if<
!std::is_same<U, void>::value,
U
T
>::type
unwrapOr(const U& defaultValue) const {
if (isOk()) {
return storage().template get<U>();
return storage().template get<T>();
}
return defaultValue;
}

Loading…
Cancel
Save