mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-11 06:32:25 +02:00
remove line breaks in DS for loop
This commit is contained in:
parent
569fa76dde
commit
8deee63f74
1 changed files with 1 additions and 4 deletions
|
@ -127,10 +127,7 @@ int main(int argc, const char * argv[])
|
|||
currentBufferPos = broadcastPacket + 1;
|
||||
startPointer = currentBufferPos;
|
||||
|
||||
for(AgentList::iterator agent = agentList->begin();
|
||||
agent != agentList->end();
|
||||
agent++) {
|
||||
|
||||
for (AgentList::iterator agent = agentList->begin(); agent != agentList->end(); agent++) {
|
||||
if (DEBUG_TO_SELF ||
|
||||
!agent->matches((sockaddr *)&agentPublicAddress, (sockaddr *)&agentLocalAddress, agentType)) {
|
||||
if (memchr(SOLO_AGENT_TYPES, agent->getType(), sizeof(SOLO_AGENT_TYPES)) == NULL) {
|
||||
|
|
Loading…
Reference in a new issue