Lots of stuff

Former-commit-id: 39b5f3c01e
This commit is contained in:
2022-10-03 20:00:46 -04:00
parent 469c499a6b
commit bc202ba493
47 changed files with 701 additions and 312 deletions

View File

@@ -14,7 +14,7 @@ public:
node* cur = x4_start;
while (cur != x8_end) {
cur->get_value()->~T();
Alloc::deallocate(cur->get_value());
x0_allocator.deallocate(cur->get_value());
cur = cur->get_next();
}
}