fixed unused warnings

This commit is contained in:
marina.kolpakova
2012-08-20 00:06:12 +04:00
parent 66eb96d719
commit 9c13b84e35
7 changed files with 65 additions and 57 deletions

View File

@@ -1607,6 +1607,7 @@ GPU_PERF_TEST(Norm, cv::gpu::DeviceInfo, cv::Size, MatDepth, NormType)
{
dst = cv::gpu::norm(src, normType, buf);
}
(void)dst;
}
INSTANTIATE_TEST_CASE_P(Core, Norm, testing::Combine(
@@ -1642,6 +1643,7 @@ GPU_PERF_TEST(NormDiff, cv::gpu::DeviceInfo, cv::Size, NormType)
{
dst = cv::gpu::norm(src1, src2, normType);
}
(void)dst;
}
INSTANTIATE_TEST_CASE_P(Core, NormDiff, testing::Combine(
@@ -1829,6 +1831,7 @@ GPU_PERF_TEST(CountNonZero, cv::gpu::DeviceInfo, cv::Size, MatDepth)
{
dst = cv::gpu::countNonZero(src, buf);
}
(void)dst;
}
INSTANTIATE_TEST_CASE_P(Core, CountNonZero, testing::Combine(