mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 22:41:25 +12:00
fix gcc complain about non-const reference...
This commit is contained in:
parent
851acfdbf3
commit
85626024a0
1 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ public:
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Push(T& data)
|
bool Push(const T& data)
|
||||||
{
|
{
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
|
@ -96,4 +96,4 @@ public:
|
||||||
SMutexLocker lock(m_mutex);
|
SMutexLocker lock(m_mutex);
|
||||||
m_count = 0;
|
m_count = 0;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue