Fixed to compile without NDEBUG

This commit is contained in:
yvt 2014-05-08 02:58:41 +09:00
parent e398ede806
commit 2ee3f96340

View File

@ -53,10 +53,10 @@ namespace spades{
Type type){
Load(r);
if(type == Type::Steady) {
SPAssert(fId >= 0 && fId < 180);
SPAssert(i >= 0 && i < 180);
return lastSeq[i];
} else {
SPAssert(fId >= 0 && fId < 48);
SPAssert(i >= 0 && i < 48);
return lastSeq2[i];
}
}