Mercurial > hg > svcore
diff data/model/SparseModel.h @ 778:d373ced0e6e9
outputFeatureNo -> outputNo
author | Chris Cannam |
---|---|
date | Wed, 27 Mar 2013 15:07:27 +0000 |
parents | eea8049df526 |
children | 05ba4bbd2b87 |
line wrap: on
line diff
--- a/data/model/SparseModel.h Wed Mar 27 14:51:49 2013 +0000 +++ b/data/model/SparseModel.h Wed Mar 27 15:07:27 2013 +0000 @@ -407,7 +407,7 @@ PointListIterator i = i0; for (i = i0; i != i1; ++i) { - if (i->frame < frame) { continue; } + if (i->frame < (int)frame) { continue; } if (indexAtFrame > 0) { --indexAtFrame; continue; } return i; } @@ -436,7 +436,7 @@ PointListConstIterator i = i0; for (i = i0; i != i1; ++i) { - if (i->frame < frame) { continue; } + if (i->frame < (int)frame) { continue; } if (indexAtFrame > 0) { --indexAtFrame; continue; } return i; }