diff options
-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; }; |