Răsfoiți Sursa

Merge pull request #8664 from liamwhite/monkey-compiler-v12-1

common: move forwarded value into SPSCQueue
Morph 4 ani în urmă
părinte
comite
f8a005e26e
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      src/common/threadsafe_queue.h

+ 1 - 1
src/common/threadsafe_queue.h

@@ -39,7 +39,7 @@ public:
     template <typename Arg>
     void Push(Arg&& t) {
         // create the element, add it to the queue
-        write_ptr->current = std::forward<Arg>(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();