Commit 638c0d1b authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

fixed compile warnings

parent 50299c1d
......@@ -195,7 +195,7 @@ void CV_DetectorTest::run( int )
validationFS << DETECTORS << "{";
assert( detectorNames.size() == detectorFilenames.size() );
nit = detectorNames.begin();
for( int di = 0; di < detectorNames.size(); ++nit, di++ )
for( int di = 0; nit != detectorNames.end(); ++nit, di++ )
{
validationFS << *nit << "{";
writeDetector( validationFS, di );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment