aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/cxx11_tensor_executor.cpp
diff options
context:
space:
mode:
authorGravatar Eugene Zhulenev <ezhulenev@google.com>2018-09-13 15:03:36 -0700
committerGravatar Eugene Zhulenev <ezhulenev@google.com>2018-09-13 15:03:36 -0700
commit01197e44527941c95f9a63e4f60ab3a989f12cbe (patch)
tree88629a77a9a240d3bc5489c391b5c994bb0b819b /unsupported/test/cxx11_tensor_executor.cpp
parentd138fe341dab4b7c1a7b7d012a3e13e1796aad8f (diff)
Fix warnings
Diffstat (limited to 'unsupported/test/cxx11_tensor_executor.cpp')
-rw-r--r--unsupported/test/cxx11_tensor_executor.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/unsupported/test/cxx11_tensor_executor.cpp b/unsupported/test/cxx11_tensor_executor.cpp
index 8639e7b38..1bb99854c 100644
--- a/unsupported/test/cxx11_tensor_executor.cpp
+++ b/unsupported/test/cxx11_tensor_executor.cpp
@@ -27,7 +27,7 @@ static array<Index, NumDims> RandomDims(int min_dim = 1, int max_dim = 20) {
dims[i] = internal::random<int>(min_dim, max_dim);
}
return dims;
-};
+}
template <typename T, int NumDims, typename Device, bool Vectorizable,
bool Tileable, int Layout>
@@ -117,7 +117,7 @@ static void test_execute_broadcasting(Device d)
for (Index i = 0; i < dst.dimensions().TotalSize(); ++i) {
VERIFY_IS_EQUAL(dst.coeff(i), golden.coeff(i));
}
-};
+}
template <typename T, int NumDims, typename Device, bool Vectorizable,
bool Tileable, int Layout>
@@ -155,7 +155,7 @@ static void test_execute_chipping_rvalue(Device d) {
TEST_CHIPPING(5)
#undef TEST_CHIPPING
-};
+}
template <typename T, int NumDims, typename Device, bool Vectorizable,
bool Tileable, int Layout>
@@ -207,7 +207,7 @@ static void test_execute_chipping_lvalue(Device d) {
TEST_CHIPPING(5)
#undef TEST_CHIPPING
-};
+}
template <typename T, int NumDims, typename Device, bool Vectorizable,
bool Tileable, int Layout>