mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 02:30:00 +00:00
fix formatting
This commit is contained in:
parent
e10903cab9
commit
8ed2748820
1 changed files with 6 additions and 1 deletions
|
@ -16,7 +16,12 @@
|
||||||
|
|
||||||
namespace Kernel {
|
namespace Kernel {
|
||||||
|
|
||||||
enum class CodeMemoryOperation : u32 { Map = 0, MapToOwner = 1, Unmap = 2, UnmapFromOwner = 3, };
|
enum class CodeMemoryOperation : u32 {
|
||||||
|
Map = 0,
|
||||||
|
MapToOwner = 1,
|
||||||
|
Unmap = 2,
|
||||||
|
UnmapFromOwner = 3,
|
||||||
|
};
|
||||||
|
|
||||||
class KCodeMemory final
|
class KCodeMemory final
|
||||||
: public KAutoObjectWithSlabHeapAndContainer<KCodeMemory, KAutoObjectWithList> {
|
: public KAutoObjectWithSlabHeapAndContainer<KCodeMemory, KAutoObjectWithList> {
|
||||||
|
|
Loading…
Reference in a new issue