Fix compiler errors with functions not returning values.

This commit is contained in:
Pavel Krajcevski 2012-11-07 15:21:55 -05:00
parent 9360e80a56
commit 53b8d4c9a9
2 changed files with 4 additions and 0 deletions

View File

@ -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() {

View File

@ -243,6 +243,8 @@ bool ThreadGroup::CleanUpThreads() {
// Reset active number of threads...
m_ActiveThreads = 0;
m_ExitFlag = false;
return true;
}
void ThreadGroup::Join() {