diff options
| author | 2018-08-01 22:40:00 -0400 | |
|---|---|---|
| committer | 2018-08-01 23:34:42 -0400 | |
| commit | bf45092c616987a3b58b7a859811938f885aa4d1 (patch) | |
| tree | 805c60b2692d6a700bea69e5181f9010065134f8 /src/core/hle/service/service.h | |
| parent | Merge pull request #888 from lioncash/caps (diff) | |
| download | yuzu-bf45092c616987a3b58b7a859811938f885aa4d1.tar.gz yuzu-bf45092c616987a3b58b7a859811938f885aa4d1.tar.xz yuzu-bf45092c616987a3b58b7a859811938f885aa4d1.zip | |
kernel: Move object class to its own source files
General moving to keep kernel object types separate from the direct
kernel code. Also essentially a preliminary cleanup before eliminating
global kernel state in the kernel code.
Diffstat (limited to 'src/core/hle/service/service.h')
| -rw-r--r-- | src/core/hle/service/service.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/service.h b/src/core/hle/service/service.h index 180f22703..046c5e18d 100644 --- a/src/core/hle/service/service.h +++ b/src/core/hle/service/service.h | |||
| @@ -8,10 +8,9 @@ | |||
| 8 | #include <string> | 8 | #include <string> |
| 9 | #include <unordered_map> | 9 | #include <unordered_map> |
| 10 | #include <boost/container/flat_map.hpp> | 10 | #include <boost/container/flat_map.hpp> |
| 11 | #include "common/bit_field.h" | ||
| 12 | #include "common/common_types.h" | 11 | #include "common/common_types.h" |
| 13 | #include "core/hle/kernel/hle_ipc.h" | 12 | #include "core/hle/kernel/hle_ipc.h" |
| 14 | #include "core/hle/kernel/kernel.h" | 13 | #include "core/hle/kernel/object.h" |
| 15 | 14 | ||
| 16 | //////////////////////////////////////////////////////////////////////////////////////////////////// | 15 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 17 | // Namespace Service | 16 | // Namespace Service |