Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
尝试[Raknet][1]使用 xCode 6.2 构建 iOS
[Raknet][1]
但我收到了类似的错误
/RakNet-master/Source/ReplicaManager3.cpp:141:61:指针和整数之间的比较('RakNet::Connection_RM3 *' 和 'int')
有人在 Xcode 6.2 上成功构建 RakNet 吗?
false似乎是 C++ 11 问题,我通过更改为得到解决nullptr
false
nullptr
早些时候
if (GetConnectionByGUID(participantListIn[index], worldId)==false)
现在
if (GetConnectionByGUID(participantListIn[index], worldId)==nullptr)