removed compile warning in GPU module

This commit is contained in:
Alexey Spizhevoy 2011-01-21 08:48:20 +00:00
parent a05ae51271
commit 1327789d72

View File

@ -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)
{