Remove remaining early breaks in OMP loops (see #5)

This commit is contained in:
Romain Janvier
2024-03-11 21:59:21 +01:00
parent ea3f3f1a0f
commit 8aa8f054d4
4 changed files with 0 additions and 5 deletions
-2
View File
@@ -224,7 +224,6 @@ bool Classifier::classify( const Feature::Source::Set& featureSources,
{
errorMessage = cvex.msg.c_str();
success = false;
break;
}
for (int fIndex = 0; fIndex < attributesPerSample; ++fIndex)
@@ -257,7 +256,6 @@ bool Classifier::classify( const Feature::Source::Set& featureSources,
{
//process cancelled by the user
success = false;
break;
}
}