Commit d64438dc authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

fixed build errors in the case of TBB and Concurrency

parent 8441cf70
...@@ -119,7 +119,7 @@ namespace cv ...@@ -119,7 +119,7 @@ namespace cv
void operator ()(const tbb::blocked_range<int>& range) const 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 #elif defined HAVE_GCD
...@@ -141,7 +141,7 @@ namespace cv ...@@ -141,7 +141,7 @@ namespace cv
void operator ()(int i) const void operator ()(int i) const
{ {
(*this)(Range(i, i + 1)); ParallelLoopBody::operator()(Range(i, i + 1));
} }
} }
#else #else
......
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