diff options
author | TSRBerry <20988865+TSRBerry@users.noreply.github.com> | 2023-06-24 02:46:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-24 02:46:04 +0200 |
commit | 7d160e98fde05e0b9b542dc04ea72dc34994bc5b (patch) | |
tree | 958d5f376a5a2421a7a58b21080eb454f9c744c1 /src/ARMeilleure/Memory/IJitMemoryBlock.cs | |
parent | bf96bc84a82f2c4ab771b2ab0c610f86d00b1adf (diff) |
MemoryManagement: Change return types for Commit/Decommit to void (#5325)1.1.905
* Replace return type with void for Commit/Decommit
* Small cleanup
Diffstat (limited to 'src/ARMeilleure/Memory/IJitMemoryBlock.cs')
-rw-r--r-- | src/ARMeilleure/Memory/IJitMemoryBlock.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ARMeilleure/Memory/IJitMemoryBlock.cs b/src/ARMeilleure/Memory/IJitMemoryBlock.cs index 670f2862..9b11e07f 100644 --- a/src/ARMeilleure/Memory/IJitMemoryBlock.cs +++ b/src/ARMeilleure/Memory/IJitMemoryBlock.cs @@ -6,9 +6,9 @@ namespace ARMeilleure.Memory { IntPtr Pointer { get; } - bool Commit(ulong offset, ulong size); + void Commit(ulong offset, ulong size); void MapAsRx(ulong offset, ulong size); void MapAsRwx(ulong offset, ulong size); } -} +}
\ No newline at end of file |