aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2015-03-30 14:49:10 -0700
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2015-03-30 14:49:10 -0700
commit71950f02e573bcffa589e83f188bc64b717af1c7 (patch)
tree59c1cd38b0a6691e0f265e8c5a4dd39f5489a970
parentd3f7915aeb5fb08da7961cfb0160561ec0cf56bb (diff)
Deleted unnecessary semicolons
-rw-r--r--unsupported/Eigen/CXX11/src/Core/util/EmulateCXX11Meta.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/Eigen/CXX11/src/Core/util/EmulateCXX11Meta.h b/unsupported/Eigen/CXX11/src/Core/util/EmulateCXX11Meta.h
index 494f95690..1490ffb62 100644
--- a/unsupported/Eigen/CXX11/src/Core/util/EmulateCXX11Meta.h
+++ b/unsupported/Eigen/CXX11/src/Core/util/EmulateCXX11Meta.h
@@ -277,7 +277,7 @@ EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE typename Head::type array_get(const type_l
template <class NList>
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE typename NList::HeadType::type array_prod(const NList& l) {
return arg_prod<NList>::value;
-};
+}
template<std::size_t n, typename t>
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE t array_prod(const array<t, n>& a) {