From dcddf40460faac1942d5e7d3d20231b385afe652 Mon Sep 17 00:00:00 2001 From: "Kalinin, Andrey" Date: Thu, 17 Nov 2016 14:08:19 +0700 Subject: [PATCH] Sum: fix unused variable error in test --- tests/gtests/test_sum.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/gtests/test_sum.cpp b/tests/gtests/test_sum.cpp index 5ff81cb0e6e..d3b031b5da2 100644 --- a/tests/gtests/test_sum.cpp +++ b/tests/gtests/test_sum.cpp @@ -76,7 +76,6 @@ class sum_test: public ::testing::TestWithParam { sum_test_params p = ::testing::TestWithParam::GetParam(); - int src_dim_sum = 0; for (size_t i = 0; i < p.srcs_cds.size(); i++) { for (size_t dim = 0; dim < p.dst_cds.size(); dim++) { ASSERT_TRUE(p.srcs_cds[i][dim] == p.dst_cds[dim]);