Allocator Aware Array and List

This commit is contained in:
Dynamitos
2021-10-23 00:22:35 +02:00
parent 451572f254
commit 9c48c48f8c
16 changed files with 1390 additions and 1230 deletions
+1 -1
View File
@@ -171,7 +171,7 @@ public:
using pointer = Pair<K, V>*;
Iterator(Node *x = nullptr)
: node(x), traversal(Init_t::NO_INIT)
: node(x)
{
}
Iterator(Node *x, Array<Node *> &&beginIt)