mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 13:28:01 +03:00
Simplify gui_listener
Use lf_queue
This commit is contained in:
parent
3fed4dcc5a
commit
ac775cd75e
2 changed files with 20 additions and 26 deletions
|
@ -287,6 +287,11 @@ public:
|
|||
return m_head != nullptr;
|
||||
}
|
||||
|
||||
T* get() const
|
||||
{
|
||||
return m_head ? &m_head->m_data : nullptr;
|
||||
}
|
||||
|
||||
lf_queue_iterator<T> begin() const
|
||||
{
|
||||
lf_queue_iterator<T> result;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue