summaryrefslogtreecommitdiffstats
path: root/src/core/hle/result.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/result.h')
-rw-r--r--src/core/hle/result.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h
index 55bd8d22f..47b6e2b23 100644
--- a/src/core/hle/result.h
+++ b/src/core/hle/result.h
@@ -398,10 +398,6 @@ public:
return std::move(**this);
}
- T&& MoveFrom() {
- return std::move(Unwrap());
- }
-
private:
// A union is used to allocate the storage for the value, while allowing us to construct and
// destruct it at will.