From ec64a94954535b8be4a045150cffb4dc3afb427a Mon Sep 17 00:00:00 2001 From: Liam Date: Thu, 28 Jul 2022 19:47:39 -0400 Subject: common: move forwarded value into SPSCQueue --- src/common/threadsafe_queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/threadsafe_queue.h b/src/common/threadsafe_queue.h index f7ae9d8c2..053798e79 100644 --- a/src/common/threadsafe_queue.h +++ b/src/common/threadsafe_queue.h @@ -39,7 +39,7 @@ public: template void Push(Arg&& t) { // create the element, add it to the queue - write_ptr->current = std::forward(t); + write_ptr->current = std::move(t); // set the next pointer to a new element ptr // then advance the write pointer ElementPtr* new_ptr = new ElementPtr(); -- cgit v1.2.3