[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> template<typename U = T>
typename std::enable_if< typename std::enable_if<
!std::is_same<U, void>::value, !std::is_same<U, void>::value,
U T
>::type >::type
unwrapOr(const U& defaultValue) const { unwrapOr(const U& defaultValue) const {
if (isOk()) { if (isOk()) {
return storage().template get<U>(); return storage().template get<T>();
} }
return defaultValue; return defaultValue;
} }

Loading…
Cancel
Save