このエラーを修正する方法を理解するのに問題があります。次のコードスニペットは、XCode4.2でこのエラーを生成します。
//Returns a random integer number between low and high inclusive */
static inline int randomInt (int low, int high) {
return (arc4random() % (high-low+1)) + low;
}
それを修正する方法について何か提案はありますか?
ありがとう...