mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 19:33:28 +01:00
thread_group: fix build on older GCC
vtnerd (original author) confirmed this is the Right Way.
This commit is contained in:
parent
2d0fbaf35b
commit
81c6bb9a40
@ -112,12 +112,10 @@ private:
|
|||||||
struct work;
|
struct work;
|
||||||
|
|
||||||
struct node {
|
struct node {
|
||||||
node() = delete;
|
|
||||||
std::unique_ptr<work> ptr;
|
std::unique_ptr<work> ptr;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct work {
|
struct work {
|
||||||
work() = delete;
|
|
||||||
std::function<void()> f;
|
std::function<void()> f;
|
||||||
node next;
|
node next;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user