diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-28 18:27:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-28 18:27:48 +0200 |
commit | d8ba202070f116450658acbd8b414eecdd698c23 (patch) | |
tree | 4819c20554058c939d1409c11faf1f8a2396cfd9 | |
parent | Merge pull request #1194 from lioncash/alloc (diff) | |
parent | hle/result: Make ResultVal's move constructor as noexcept (diff) | |
download | yuzu-d8ba202070f116450658acbd8b414eecdd698c23.tar yuzu-d8ba202070f116450658acbd8b414eecdd698c23.tar.gz yuzu-d8ba202070f116450658acbd8b414eecdd698c23.tar.bz2 yuzu-d8ba202070f116450658acbd8b414eecdd698c23.tar.lz yuzu-d8ba202070f116450658acbd8b414eecdd698c23.tar.xz yuzu-d8ba202070f116450658acbd8b414eecdd698c23.tar.zst yuzu-d8ba202070f116450658acbd8b414eecdd698c23.zip |
-rw-r--r-- | src/core/hle/result.h | 2 |
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)); } |