Update AllocatePages comment to point to the correct page size API

This commit is contained in:
Damian Korczowski
2021-02-21 14:45:31 +01:00
parent 5bdf4dc74e
commit 1b234fd32b

View File

@@ -320,7 +320,7 @@ public:
/// Allocates pages memory block.
/// </summary>
/// <param name="numPages">The number of pages to allocate.</param>
/// <param name="pageSize">The size of single page. Use GetDefaultPageSize() or provide compatible, custom size.</param>
/// <param name="pageSize">The size of single page. Use Platform::GetCPUInfo().PageSize or provide compatible, custom size.</param>
/// <returns>The pointer to the allocated pages in memory.</returns>
static void* AllocatePages(uint64 numPages, uint64 pageSize) = delete;