Browse Source
kernel/shared_memory: Remove unnecessary semicolon at end of ConvertPermissions()
Functions don't need to be terminated by semicolons.
pull/15/merge
Lioncash
8 years ago
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7
1 changed files with
1 additions and
1 deletions
-
src/core/hle/kernel/shared_memory.cpp
|
|
|
@ -152,7 +152,7 @@ VMAPermission SharedMemory::ConvertPermissions(MemoryPermission permission) { |
|
|
|
u32 masked_permissions = |
|
|
|
static_cast<u32>(permission) & static_cast<u32>(MemoryPermission::ReadWriteExecute); |
|
|
|
return static_cast<VMAPermission>(masked_permissions); |
|
|
|
}; |
|
|
|
} |
|
|
|
|
|
|
|
u8* SharedMemory::GetPointer(u32 offset) { |
|
|
|
return backing_block->data() + backing_block_offset + offset; |
|
|
|
|