From 81c6bb9a403e6e7401990ad52d29e35adcffc91a Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sun, 11 Dec 2016 13:59:42 +0000 Subject: [PATCH] thread_group: fix build on older GCC vtnerd (original author) confirmed this is the Right Way. --- src/common/thread_group.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/common/thread_group.h b/src/common/thread_group.h index 62e82d83..10add89e 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 ptr; }; struct work { - work() = delete; std::function f; node next; };