在构建项目时,我收到指向此代码的断言失败。请问有什么想法吗?我尝试过清理、删除派生数据、关闭 xcode 等。请提供任何帮助。
unsigned int
FNVForCString(
const char* s)
{
assert(s);
unsigned int hash = 2166136261;
int ch;
while (0 != (ch = *s++))
{
hash *= 16777619;
hash ^= ch;
}
return hash;
}
只是说它在断言上失败了;线。