hello i got this error and i dont know what to do. I use CodeBlocks IDE(bcs i need it for linux)
there is a code:
void ReplicaManager3::AutoCreateConnectionList( DataStructures::List<RakNetGUID> &participantListIn, DataStructures::List<Connection_RM3*> &participantListOut, WorldId worldId) { for (unsigned int index=0; index < participantListIn.Size(); index++) { if (GetConnectionByGUID(participantListIn[index], worldId)==false) { Connection_RM3 *connection = AllocConnection(rakPeerInterface->GetSystemAddressFromGuid(participantListIn[index]), participantListIn[index]); if (connection) { PushConnection(connection); participantListOut.Push(connection, _FILE_AND_LINE_); } } } }
and the error is there: if (GetConnectionByGUID(participantListIn[index], worldId)==false)
