fixed build errors in the case of TBB and Concurrency
This commit is contained in:
parent
8441cf700d
commit
d64438dcfd
@ -119,7 +119,7 @@ namespace cv
|
||||
|
||||
void operator ()(const tbb::blocked_range<int>& range) const
|
||||
{
|
||||
(*this)(Range(range.begin(), range.end()));
|
||||
ParallelLoopBodyWrapper::operator()(Range(range.begin(), range.end()));
|
||||
}
|
||||
};
|
||||
#elif defined HAVE_GCD
|
||||
@ -141,7 +141,7 @@ namespace cv
|
||||
|
||||
void operator ()(int i) const
|
||||
{
|
||||
(*this)(Range(i, i + 1));
|
||||
ParallelLoopBody::operator()(Range(i, i + 1));
|
||||
}
|
||||
}
|
||||
#else
|
||||
|
Loading…
x
Reference in New Issue
Block a user