diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-10-12 11:36:31 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-10-12 12:07:32 -0400 |
| commit | 1abed2f4c42c7a389cb0e019f183d3ec94971af1 (patch) | |
| tree | c8459ae8d497e7a148365f93e971b817a0adf0f6 /src/core/hle/kernel/object.h | |
| parent | 9bf409f275c951d0853ee201cef7080859c0505a (diff) | |
kernel/process: Make CodeSet a regular non-inherited object
These only exist to ferry data into a Process instance and end up going
out of scope quite early. Because of this, we can just make it a plain
struct for holding things and just std::move it into the relevant
function. There's no need to make this inherit from the kernel's Object
type.
Diffstat (limited to 'src/core/hle/kernel/object.h')
| -rw-r--r-- | src/core/hle/kernel/object.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/kernel/object.h b/src/core/hle/kernel/object.h index 9eb72315c..c9f4d0bb3 100644 --- a/src/core/hle/kernel/object.h +++ b/src/core/hle/kernel/object.h @@ -26,7 +26,6 @@ enum class HandleType : u32 { AddressArbiter, Timer, ResourceLimit, - CodeSet, ClientPort, ServerPort, ClientSession, |
