coroutines on windows...

This commit is contained in:
Dynamitos
2021-11-19 15:08:56 +01:00
parent 56469a137a
commit 94be513538
11 changed files with 178 additions and 125 deletions
+2 -2
View File
@@ -287,9 +287,9 @@ public:
return insertedElement;
}
// front + popFront
value_type&& retrieve()
value_type retrieve()
{
auto&& temp = std::move(root->data);
value_type temp = std::move(root->data);
popFront();
return std::move(temp);
}