More CCubeRenderer

This commit is contained in:
2025-01-30 22:00:30 -07:00
parent d39bfb5d2c
commit 23c5d67207
28 changed files with 526 additions and 168 deletions

View File

@@ -159,7 +159,7 @@ list< T, Alloc >::~list() {
node* it = cur;
node* next = cur->get_next();
cur = next;
destroy(it);
destroy(it->get_value());
x0_allocator.deallocate(it);
}
}