Minor
This commit is contained in:
parent
b827181ba1
commit
7166bd5634
|
@ -427,7 +427,7 @@ struct UnsizedArrayOf
|
||||||
if (unlikely (!serialize (c, count))) return_trace (false);
|
if (unlikely (!serialize (c, count))) return_trace (false);
|
||||||
/* TODO Umm. Just exhaust the iterator instead? Being extra
|
/* TODO Umm. Just exhaust the iterator instead? Being extra
|
||||||
* cautious right now.. */
|
* cautious right now.. */
|
||||||
for (unsigned i = 0; i < count; i++, items++)
|
for (unsigned i = 0; i < count; i++, ++items)
|
||||||
arrayZ[i] = *items;
|
arrayZ[i] = *items;
|
||||||
return_trace (true);
|
return_trace (true);
|
||||||
}
|
}
|
||||||
|
@ -608,7 +608,7 @@ struct ArrayOf
|
||||||
if (unlikely (!serialize (c, count))) return_trace (false);
|
if (unlikely (!serialize (c, count))) return_trace (false);
|
||||||
/* TODO Umm. Just exhaust the iterator instead? Being extra
|
/* TODO Umm. Just exhaust the iterator instead? Being extra
|
||||||
* cautious right now.. */
|
* cautious right now.. */
|
||||||
for (unsigned i = 0; i < count; i++, items++)
|
for (unsigned i = 0; i < count; i++, ++items)
|
||||||
arrayZ[i] = *items;
|
arrayZ[i] = *items;
|
||||||
return_trace (true);
|
return_trace (true);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue