forked from suyu/suyu
hle: nvflinger: buffer_queue_core: Declare default dtor.
This commit is contained in:
parent
8e35eedf22
commit
e524def8c0
2 changed files with 3 additions and 0 deletions
|
@ -16,6 +16,8 @@ BufferQueueCore::BufferQueueCore() : lock{mutex, std::defer_lock} {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BufferQueueCore::~BufferQueueCore() = default;
|
||||||
|
|
||||||
void BufferQueueCore::NotifyShutdown() {
|
void BufferQueueCore::NotifyShutdown() {
|
||||||
std::unique_lock lk(mutex);
|
std::unique_lock lk(mutex);
|
||||||
|
|
||||||
|
|
|
@ -32,6 +32,7 @@ public:
|
||||||
static constexpr s32 INVALID_BUFFER_SLOT = BufferItem::INVALID_BUFFER_SLOT;
|
static constexpr s32 INVALID_BUFFER_SLOT = BufferItem::INVALID_BUFFER_SLOT;
|
||||||
|
|
||||||
BufferQueueCore();
|
BufferQueueCore();
|
||||||
|
~BufferQueueCore();
|
||||||
|
|
||||||
void NotifyShutdown();
|
void NotifyShutdown();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue