summaryrefslogtreecommitdiffstats
path: root/src/Server.cpp
diff options
context:
space:
mode:
authorKirill Kirilenko <kirill@ultracoder.org>2015-01-17 13:12:14 +0100
committerKirill Kirilenko <kirill@ultracoder.org>2015-01-17 13:20:03 +0100
commit3dc994f9dca109c0d039d6ba39480eaf67d7cc57 (patch)
tree4b6d2566a2cec6804a34809313dc35c2ee83629d /src/Server.cpp
parentFixed CppCheck: (performance) Function parameter should be passed by reference. (diff)
downloadcuberite-3dc994f9dca109c0d039d6ba39480eaf67d7cc57.tar
cuberite-3dc994f9dca109c0d039d6ba39480eaf67d7cc57.tar.gz
cuberite-3dc994f9dca109c0d039d6ba39480eaf67d7cc57.tar.bz2
cuberite-3dc994f9dca109c0d039d6ba39480eaf67d7cc57.tar.lz
cuberite-3dc994f9dca109c0d039d6ba39480eaf67d7cc57.tar.xz
cuberite-3dc994f9dca109c0d039d6ba39480eaf67d7cc57.tar.zst
cuberite-3dc994f9dca109c0d039d6ba39480eaf67d7cc57.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();