summaryrefslogtreecommitdiffstats
path: root/src/Server.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-01-17 19:52:26 +0100
committerMattes D <github@xoft.cz>2015-01-17 19:52:26 +0100
commit50918a5214ed748f4ba4b0f4d36ddf7cb1ed3050 (patch)
tree7dabeb891ea4d1efc8cbc9c55d5530cf9e9d301a /src/Server.cpp
parentCMake: Check libs in submodules before configuring. (diff)
parentFixed CppCheck: (performance) Prefer prefix ++/-- operators for non-primitive types. (diff)
downloadcuberite-50918a5214ed748f4ba4b0f4d36ddf7cb1ed3050.tar
cuberite-50918a5214ed748f4ba4b0f4d36ddf7cb1ed3050.tar.gz
cuberite-50918a5214ed748f4ba4b0f4d36ddf7cb1ed3050.tar.bz2
cuberite-50918a5214ed748f4ba4b0f4d36ddf7cb1ed3050.tar.lz
cuberite-50918a5214ed748f4ba4b0f4d36ddf7cb1ed3050.tar.xz
cuberite-50918a5214ed748f4ba4b0f4d36ddf7cb1ed3050.tar.zst
cuberite-50918a5214ed748f4ba4b0f4d36ddf7cb1ed3050.zip
Diffstat (limited to 'src/Server.cpp')
-rw-r--r--src/Server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Server.cpp b/src/Server.cpp
index 3eaf6e096..4dbe59ac6 100644
--- a/src/Server.cpp
+++ b/src/Server.cpp
@@ -764,7 +764,7 @@ void cServer::cNotifyWriteThread::Execute(void)
while (!m_ShouldTerminate)
{
cCSLock Lock(m_CS);
- while (m_Clients.size() == 0)
+ while (m_Clients.empty())
{
cCSUnlock Unlock(Lock);
m_Event.Wait();