[ox] Fix compiler warnings

This commit is contained in:
2022-05-21 16:17:32 -05:00
parent 062fa07f4d
commit f2ddd15d63
8 changed files with 31 additions and 11 deletions

View File

@ -132,7 +132,7 @@ struct [[nodiscard]] Result {
}
template<typename U>
constexpr Result(const Result<U> &other) noexcept: value(other.value), error(error) {
constexpr Result(const Result<U> &other) noexcept: value(other.value), error(other.error) {
}
constexpr Result(const Error &error) noexcept: error(error) {