diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-10-28 09:58:41 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-10-28 10:00:21 +0200 |
commit | 1b5c37fa298f594bfa4f8132b08d1a602d1e5513 (patch) | |
tree | 8e01768f01a96ac14acb8175f5f31b3cd8b06776 | |
parent | hle/result: Add move assignment operator in ResultVal (diff) | |
download | yuzu-1b5c37fa298f594bfa4f8132b08d1a602d1e5513.tar yuzu-1b5c37fa298f594bfa4f8132b08d1a602d1e5513.tar.gz yuzu-1b5c37fa298f594bfa4f8132b08d1a602d1e5513.tar.bz2 yuzu-1b5c37fa298f594bfa4f8132b08d1a602d1e5513.tar.lz yuzu-1b5c37fa298f594bfa4f8132b08d1a602d1e5513.tar.xz yuzu-1b5c37fa298f594bfa4f8132b08d1a602d1e5513.tar.zst yuzu-1b5c37fa298f594bfa4f8132b08d1a602d1e5513.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/result.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h index ffef46794..00fe70998 100644 --- a/src/core/hle/result.h +++ b/src/core/hle/result.h @@ -206,7 +206,7 @@ public: return result; } - ResultVal(const ResultVal& o) : result_code(o.result_code) { + ResultVal(const ResultVal& o) noexcept : result_code(o.result_code) { if (!o.empty()) { new (&object) T(o.object); } @@ -224,7 +224,7 @@ public: } } - ResultVal& operator=(const ResultVal& o) { + ResultVal& operator=(const ResultVal& o) noexcept { if (this == &o) { return *this; } @@ -244,7 +244,7 @@ public: return *this; } - ResultVal& operator=(ResultVal&& o) { + ResultVal& operator=(ResultVal&& o) noexcept { if (this == &o) { return *this; } |