我在Cocos2D-X应用程序中使用了CCNumber repo here。代码
inline int compare(const CCNumber<_typeT>* rhs)
{
return memcmp((void*)&m_type, (void*)&rhs->m_type, sizeof(_typeT));
}
给我一个错误
Invalid arguments '
Candidates are:
int memcmp(const void *, const void *, ?)
我在做错了什么?