mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-27 15:32:52 +02:00
performance Prefer prefix ++/-- operators for non-primitive types.
Origin commit data
------------------
Commit: bb347b3a44
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2012-04-28 (Sat, 28 Apr 2012)
This commit is contained in:
@@ -64,7 +64,7 @@ void CEventServer::sendEvent(const unsigned int eventID, const initiators initia
|
||||
{
|
||||
eventClientMap notifyClients = eventData[eventID];
|
||||
|
||||
for(eventClientMap::iterator pos = notifyClients.begin(); pos != notifyClients.end(); pos++)
|
||||
for(eventClientMap::iterator pos = notifyClients.begin(); pos != notifyClients.end(); ++pos)
|
||||
{
|
||||
//allen clients ein event schicken
|
||||
eventClient client = pos->second;
|
||||
|
Reference in New Issue
Block a user