facebookarchive / RakNet

RakNet is a cross platform, open source, C++ networking engine for game programmers.
Other
3.3k stars 1.02k forks source link

forbids comparison between pointer and integer #148

Open coldmon91 opened 3 years ago

coldmon91 commented 3 years ago

g++ (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0 building by cmake in Ubuntu20.04

RakNet/Source/ReplicaManager3.cpp:141:63: error: ISO C++ forbids comparison between pointer and integer [-fpermissive] 141 | if (GetConnectionByGUID(participantListIn[index], worldId)==false)

sethhope commented 2 years ago

Change to: if (GetConnectionByGUID(participantListIn[index], worldId)==NULL)