1
0

cWorld * -> cWorld (#4771)

* cWorld * -> cWorld
This commit is contained in:
Tiger Wang
2020-07-14 17:57:30 +01:00
committed by GitHub
parent 36eab1b323
commit 9d277f1d10
6 changed files with 96 additions and 129 deletions

View File

@@ -121,10 +121,10 @@ void cChunkGeneratorThread::WaitForQueueEmpty(void)
int cChunkGeneratorThread::GetQueueLength(void) const
size_t cChunkGeneratorThread::GetQueueLength(void) const
{
cCSLock Lock(m_CS);
return static_cast<int>(m_Queue.size());
return m_Queue.size();
}