mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 11:40:44 +08:00
removed compile warning in GPU module
This commit is contained in:
parent
a05ae51271
commit
1327789d72
@ -63,7 +63,7 @@ struct CV_GpuBitwiseTest: public CvTest
|
||||
gpu::hasNativeDoubleSupport(gpu::getDevice());
|
||||
int depth_end = double_ok ? CV_64F : CV_32F;
|
||||
|
||||
for (int depth = CV_8U; depth <= CV_32F; ++depth)
|
||||
for (int depth = CV_8U; depth <= depth_end; ++depth)
|
||||
for (int cn = 1; cn <= 4; ++cn)
|
||||
for (int attempt = 0; attempt < 3; ++attempt)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user