[ox/std] Fix Result::originate to return value
Build / build (push) Successful in 1m12s

This commit is contained in:
2026-05-17 15:19:13 -05:00
parent 9f485d9496
commit dce09b564c
+1 -1
View File
@@ -352,7 +352,7 @@ struct [[nodiscard]] Result {
if (error) {
return {std::move(value), Error{pErrCode, pMsg, pSrc}};
}
return Error{};
return {std::move(value)};
}
constexpr Result reoriginate(