mirror of
https://github.com/PabloMK7/citra
synced 2024-11-15 05:08:23 +00:00
Merge pull request #4386 from wwylele/codeset-class
Kernel/CodeSet: change struct to class
This commit is contained in:
commit
bd4beb6558
1 changed files with 2 additions and 1 deletions
|
@ -50,7 +50,8 @@ enum class ProcessStatus { Created, Running, Exited };
|
|||
class ResourceLimit;
|
||||
struct MemoryRegionInfo;
|
||||
|
||||
struct CodeSet final : public Object {
|
||||
class CodeSet final : public Object {
|
||||
public:
|
||||
struct Segment {
|
||||
std::size_t offset = 0;
|
||||
VAddr addr = 0;
|
||||
|
|
Loading…
Reference in a new issue