aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h
diff options
context:
space:
mode:
authorGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2015-08-18 14:34:00 +0200
committerGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2015-08-18 14:34:00 +0200
commit0721690dbb08e78be379cec785b070591aa2b072 (patch)
tree62b72a7df73ec4eee3f1344c641bb9b6f08c2715 /unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h
parent8097d8d028707583f80cf817e19e5f5dd17642f1 (diff)
Use standard include syntax in Tensor module (<> for include-path and "" for relative path)
Diffstat (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h')
-rw-r--r--unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h b/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h
index d6c81a7a7..78e1d2bd1 100644
--- a/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h
+++ b/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h
@@ -183,7 +183,7 @@ template<typename FirstType, typename... OtherTypes> size_t array_prod(const Ind
result *= sizes[i];
}
return result;
-};
+}
template<typename FirstType, typename... OtherTypes> struct array_size<IndexList<FirstType, OtherTypes...> > {
static const size_t value = std::tuple_size<std::tuple<FirstType, OtherTypes...> >::value;