Rename allocator to allocator_t

This commit is contained in:
Vitaliy Filippov
2025-03-13 00:53:34 +03:00
parent b760951aa7
commit 263a3b5ad6
7 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
void alloc_all(int size)
{
allocator *a = new allocator(size);
allocator_t *a = new allocator_t(size);
for (int i = 0; i < size; i++)
{
uint64_t x = a->find_free();