Adding ThreadPool (doesnt work)

This commit is contained in:
Dynamitos
2023-12-17 16:16:46 +01:00
parent c409a3acd0
commit 34e0d283e8
15 changed files with 82 additions and 661 deletions
+2 -1
View File
@@ -179,6 +179,7 @@ public:
, _size(std::move(other._size))
, allocator(std::move(other.allocator))
{
other._size = 0;
}
List(List&& other, const Allocator& alloc)
: root(std::move(other.root))
@@ -188,7 +189,7 @@ public:
, _size(std::move(other._size))
, allocator(allocator)
{
other.clear();
other._size = 0;
}
~List()
{