fixed warning [-Wempty-body]
This commit is contained in:
parent
c45492371a
commit
d014cb8fb4
@ -208,7 +208,7 @@ void cv::ocl::GoodFeaturesToTrackDetector_OCL::operator ()(const oclMat& image,
|
|||||||
if(!use_cpu_sorter)
|
if(!use_cpu_sorter)
|
||||||
{ // round to 2^n
|
{ // round to 2^n
|
||||||
unsigned int n=1;
|
unsigned int n=1;
|
||||||
for(n=1;n<(unsigned int)corner_array_size;n<<=1);
|
for(n=1;n<(unsigned int)corner_array_size;n<<=1) ;
|
||||||
corner_array_size = (int)n;
|
corner_array_size = (int)n;
|
||||||
|
|
||||||
ensureSizeIsEnough(1, corner_array_size , CV_32FC2, tmpCorners_);
|
ensureSizeIsEnough(1, corner_array_size , CV_32FC2, tmpCorners_);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user