Merge pull request #1431

81c6bb9a thread_group: fix build on older GCC (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2016-12-12 22:38:27 +02:00
commit 84d3107600
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -112,12 +112,10 @@ private:
struct work;
struct node {
node() = delete;
std::unique_ptr<work> ptr;
};
struct work {
work() = delete;
std::function<void()> f;
node next;
};