mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2024-11-24 06:55:45 +01:00
Fix compiler errors with functions not returning values.
This commit is contained in:
parent
9360e80a56
commit
53b8d4c9a9
@ -34,6 +34,8 @@ TCThreadBase &TCThreadBase::operator=(const TCThreadBase &other) {
|
||||
// Our implementation is now the same as the other.
|
||||
m_Impl = other.m_Impl;
|
||||
m_Impl->IncreaseReferenceCount();
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
TCThreadBase::~TCThreadBase() {
|
||||
|
@ -243,6 +243,8 @@ bool ThreadGroup::CleanUpThreads() {
|
||||
// Reset active number of threads...
|
||||
m_ActiveThreads = 0;
|
||||
m_ExitFlag = false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void ThreadGroup::Join() {
|
||||
|
Loading…
Reference in New Issue
Block a user