summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-03-10 23:34:17 +0100
committerLioncash <mathew1800@gmail.com>2019-03-10 23:34:20 +0100
commit0c28ab92e66146bb8d4190ff76cd7f5512ee1d3a (patch)
tree73d63dc2175becf28042f02849c140f20f21a19d
parentcore/hle/result: Amend error in comment description for ResultCode (diff)
downloadyuzu-0c28ab92e66146bb8d4190ff76cd7f5512ee1d3a.tar
yuzu-0c28ab92e66146bb8d4190ff76cd7f5512ee1d3a.tar.gz
yuzu-0c28ab92e66146bb8d4190ff76cd7f5512ee1d3a.tar.bz2
yuzu-0c28ab92e66146bb8d4190ff76cd7f5512ee1d3a.tar.lz
yuzu-0c28ab92e66146bb8d4190ff76cd7f5512ee1d3a.tar.xz
yuzu-0c28ab92e66146bb8d4190ff76cd7f5512ee1d3a.tar.zst
yuzu-0c28ab92e66146bb8d4190ff76cd7f5512ee1d3a.zip
-rw-r--r--src/core/hle/result.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h
index 46116c40a..ab84f5ddc 100644
--- a/src/core/hle/result.h
+++ b/src/core/hle/result.h
@@ -128,11 +128,6 @@ union ResultCode {
constexpr ResultCode(ErrorModule module_, u32 description_)
: raw(module.FormatValue(module_) | description.FormatValue(description_)) {}
- constexpr ResultCode& operator=(const ResultCode& o) {
- raw = o.raw;
- return *this;
- }
-
constexpr bool IsSuccess() const {
return raw == 0;
}