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

@@ -1229,6 +1229,7 @@ GPU_PERF_TEST(Norm, cv::gpu::DeviceInfo, cv::Size, MatDepth, NormType)
{
dst = cv::norm(src, normType);
}
(void)dst;
}
INSTANTIATE_TEST_CASE_P(Core, Norm, testing::Combine(
@@ -1259,6 +1260,7 @@ GPU_PERF_TEST(NormDiff, cv::gpu::DeviceInfo, cv::Size, NormType)
{
dst = cv::norm(src1, src2, normType);
}
(void)dst;
}
INSTANTIATE_TEST_CASE_P(Core, NormDiff, testing::Combine(
@@ -1338,6 +1340,7 @@ GPU_PERF_TEST(CountNonZero, cv::gpu::DeviceInfo, cv::Size, MatDepth)
{
dst = cv::countNonZero(src);
}
(void)dst;
}
INSTANTIATE_TEST_CASE_P(Core, CountNonZero, testing::Combine(