diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-12-12 22:38:27 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-12-12 22:38:27 +0200 |
commit | 84d310760080477d30b94009cc8a584c37c9d77f (patch) | |
tree | 6997706824faacf2048a6ffb214dd243b8f094b5 /src | |
parent | Merge pull request #1425 (diff) | |
parent | thread_group: fix build on older GCC (diff) | |
download | monero-84d310760080477d30b94009cc8a584c37c9d77f.tar.xz |
Merge pull request #1431
81c6bb9a thread_group: fix build on older GCC (moneromooo-monero)
Diffstat (limited to 'src')
-rw-r--r-- | src/common/thread_group.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/common/thread_group.h b/src/common/thread_group.h index 62e82d832..10add89e0 100644 --- a/src/common/thread_group.h +++ b/src/common/thread_group.h @@ -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; }; |