mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-18 00:27:34 +01:00
common: move forwarded value into SPSCQueue
This commit is contained in:
parent
2e46110379
commit
ec64a94954
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user