summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-05-03 08:00:29 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2022-05-03 23:44:30 +0200
commitf3f3f1b7d94a490b0762db1d1d4040b7d93facdc (patch)
tree1e9ee6c96324eccdbc2569188943cd329eb76c39
parentMerge pull request #8272 from german77/stick_range (diff)
downloadyuzu-f3f3f1b7d94a490b0762db1d1d4040b7d93facdc.tar
yuzu-f3f3f1b7d94a490b0762db1d1d4040b7d93facdc.tar.gz
yuzu-f3f3f1b7d94a490b0762db1d1d4040b7d93facdc.tar.bz2
yuzu-f3f3f1b7d94a490b0762db1d1d4040b7d93facdc.tar.lz
yuzu-f3f3f1b7d94a490b0762db1d1d4040b7d93facdc.tar.xz
yuzu-f3f3f1b7d94a490b0762db1d1d4040b7d93facdc.tar.zst
yuzu-f3f3f1b7d94a490b0762db1d1d4040b7d93facdc.zip
-rw-r--r--src/core/hle/result.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h
index 8d38d0030..1a74a7402 100644
--- a/src/core/hle/result.h
+++ b/src/core/hle/result.h
@@ -181,7 +181,7 @@ public:
consteval ResultRange(ErrorModule module, u32 description_start, u32 description_end_)
: code{module, description_start}, description_end{description_end_} {}
- [[nodiscard]] consteval operator ResultCode() const {
+ [[nodiscard]] constexpr operator ResultCode() const {
return code;
}
@@ -232,6 +232,8 @@ public:
constexpr ResultVal(ResultCode code) : expected{Common::Unexpected(code)} {}
+ constexpr ResultVal(ResultRange range) : expected{Common::Unexpected(range)} {}
+
template <typename U>
constexpr ResultVal(U&& val) : expected{std::forward<U>(val)} {}