Cleanup: fix misleading comment

LinearAllocator does not REallocate, it just allocates a new buffer.
This commit is contained in:
Jacques Lucke
2025-05-07 20:48:26 +02:00
parent 0a6211a974
commit 52a283a1ee

View File

@@ -7,7 +7,7 @@
*
* A linear allocator is the simplest form of an allocator. It never reuses any memory, and
* therefore does not need a deallocation method. It simply hands out consecutive buffers of
* memory. When the current buffer is full, it reallocates a new larger buffer and continues.
* memory. When the current buffer is full, it allocates a new larger buffer and continues.
*/
#pragma once