mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-17 21:27:33 +01:00
hle: nvflinger: buffer_queue_core: Declare default dtor.
This commit is contained in:
parent
8e35eedf22
commit
e524def8c0
@ -16,6 +16,8 @@ BufferQueueCore::BufferQueueCore() : lock{mutex, std::defer_lock} {
|
||||
}
|
||||
}
|
||||
|
||||
BufferQueueCore::~BufferQueueCore() = default;
|
||||
|
||||
void BufferQueueCore::NotifyShutdown() {
|
||||
std::unique_lock lk(mutex);
|
||||
|
||||
|
@ -32,6 +32,7 @@ public:
|
||||
static constexpr s32 INVALID_BUFFER_SLOT = BufferItem::INVALID_BUFFER_SLOT;
|
||||
|
||||
BufferQueueCore();
|
||||
~BufferQueueCore();
|
||||
|
||||
void NotifyShutdown();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user