mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 04:47:53 +00:00
virtual_buffer: Mark size parameter of FreeMemoryPages() as [[maybe_unused]]
This isn't used on Windows, but is used on non-Windows operating systems.
This commit is contained in:
parent
e96cf13ebc
commit
ca6ff01333
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ void* AllocateMemoryPages(std::size_t size) {
|
|||
return base;
|
||||
}
|
||||
|
||||
void FreeMemoryPages(void* base, std::size_t size) {
|
||||
void FreeMemoryPages(void* base, [[maybe_unused]] std::size_t size) {
|
||||
if (!base) {
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue