fix signed/unsigned comparison

This commit is contained in:
Dennis Luxen 2014-04-25 14:42:06 +02:00
parent 16ca8da438
commit 78f5753a3a

View File

@ -239,7 +239,7 @@ public:
BOOST_ASSERT( start_index >= 0 );
BOOST_ASSERT( start_index <= end_index );
for(
unsigned i = start_index;
int i = start_index;
i < end_index;
++i
) {