Remove GetDefaultPageSize

Duplicate. We already have the API for this: `Platform::GetCPUInfo().PageSize`.
This commit is contained in:
Damian Korczowski
2021-02-21 14:44:16 +01:00
parent 161e9bd373
commit 15028c60ba
5 changed files with 0 additions and 21 deletions

View File

@@ -51,11 +51,6 @@ void UnixPlatform::Free(void* ptr)
}
}
uint64 Win32Platform::GetDefaultPageSize()
{
return 16;
}
void* Win32Platform::AllocatePages(uint64 numPages, uint64 pageSize)
{
const uint64 numBytes = numPages * pageSize;