プロジェクトのビルド時に、このコードを指すアサーションが失敗しました。理由はありますか?クリーニング、派生データの削除、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;
}
アサートで失敗していると言うだけです。ライン。