summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-28 15:39:47 +0200
committerLioncash <mathew1800@gmail.com>2018-08-28 15:39:50 +0200
commitf1bc62bb4c962de530c22d2a1e73d33cdc85ea92 (patch)
treefbb78d5f80ff9fca9362ba226bf4a9416baf235b /src/core
parentMerge pull request #1165 from bunnei/shader-cache (diff)
downloadyuzu-f1bc62bb4c962de530c22d2a1e73d33cdc85ea92.tar
yuzu-f1bc62bb4c962de530c22d2a1e73d33cdc85ea92.tar.gz
yuzu-f1bc62bb4c962de530c22d2a1e73d33cdc85ea92.tar.bz2
yuzu-f1bc62bb4c962de530c22d2a1e73d33cdc85ea92.tar.lz
yuzu-f1bc62bb4c962de530c22d2a1e73d33cdc85ea92.tar.xz
yuzu-f1bc62bb4c962de530c22d2a1e73d33cdc85ea92.tar.zst
yuzu-f1bc62bb4c962de530c22d2a1e73d33cdc85ea92.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/result.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h
index 3ebf7aadf..c6b18cfba 100644
--- a/src/core/hle/result.h
+++ b/src/core/hle/result.h
@@ -227,7 +227,7 @@ public:
}
}
- ResultVal(ResultVal&& o) : result_code(o.result_code) {
+ ResultVal(ResultVal&& o) noexcept : result_code(o.result_code) {
if (!o.empty()) {
new (&object) T(std::move(o.object));
}