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
|
@ -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;
|
||||
}
|
||||
|
|
Reference in New Issue