mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-19 19:15:26 +00:00
Fix lf_queue destructor
This commit is contained in:
parent
3b01e59cd4
commit
980c3d6fe8
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
#pragma once
|
||||
#pragma once
|
||||
|
||||
#include "types.h"
|
||||
#include "Atomic.h"
|
||||
|
@ -358,7 +358,7 @@ public:
|
|||
|
||||
~lf_queue()
|
||||
{
|
||||
delete reinterpret_cast<T*>(m_head.load());
|
||||
delete reinterpret_cast<lf_queue_item<T>*>(m_head.load());
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
|
|
Loading…
Add table
Reference in a new issue