Commit 1327789d authored by Alexey Spizhevoy's avatar Alexey Spizhevoy

removed compile warning in GPU module

parent a05ae512
......@@ -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)
{
......
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