aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/plugins
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2017-01-25 22:55:04 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2017-01-25 22:55:04 +0100
commit98dfe0c13f717c0572c55527f077ed01c110972c (patch)
treed6b4ffe1ba170b64ee04fb794c1885697c2b289f /Eigen/src/plugins
parent28351073d865d327edf08bc4b1e814ab0626f415 (diff)
Fix useless ';' warning
Diffstat (limited to 'Eigen/src/plugins')
-rw-r--r--Eigen/src/plugins/IndexedViewMethods.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Eigen/src/plugins/IndexedViewMethods.h b/Eigen/src/plugins/IndexedViewMethods.h
index e6098bfc7..b2cc2944a 100644
--- a/Eigen/src/plugins/IndexedViewMethods.h
+++ b/Eigen/src/plugins/IndexedViewMethods.h
@@ -39,19 +39,19 @@ template<typename Indices>
typename IvcRowType<Indices>::type
ivcRow(const Indices& indices) const {
return internal::makeIndexedViewCompatible(indices, internal::variable_if_dynamic<Index,RowsAtCompileTime>(derived().rows()),Specialized);
-};
+}
template<typename Indices>
typename IvcColType<Indices>::type
ivcCol(const Indices& indices) const {
return internal::makeIndexedViewCompatible(indices, internal::variable_if_dynamic<Index,ColsAtCompileTime>(derived().cols()),Specialized);
-};
+}
template<typename Indices>
typename IvcColType<Indices>::type
ivcSize(const Indices& indices) const {
return internal::makeIndexedViewCompatible(indices, internal::variable_if_dynamic<Index,SizeAtCompileTime>(derived().size()),Specialized);
-};
+}
template<typename RowIndices, typename ColIndices>
struct valid_indexed_view_overload {