Fix useless ';' warning

This commit is contained in:
Gael Guennebaud 2017-01-25 22:55:04 +01:00
parent 28351073d8
commit 98dfe0c13f

View File

@ -39,19 +39,19 @@ template<typename Indices>
typename IvcRowType<Indices>::type typename IvcRowType<Indices>::type
ivcRow(const Indices& indices) const { ivcRow(const Indices& indices) const {
return internal::makeIndexedViewCompatible(indices, internal::variable_if_dynamic<Index,RowsAtCompileTime>(derived().rows()),Specialized); return internal::makeIndexedViewCompatible(indices, internal::variable_if_dynamic<Index,RowsAtCompileTime>(derived().rows()),Specialized);
}; }
template<typename Indices> template<typename Indices>
typename IvcColType<Indices>::type typename IvcColType<Indices>::type
ivcCol(const Indices& indices) const { ivcCol(const Indices& indices) const {
return internal::makeIndexedViewCompatible(indices, internal::variable_if_dynamic<Index,ColsAtCompileTime>(derived().cols()),Specialized); return internal::makeIndexedViewCompatible(indices, internal::variable_if_dynamic<Index,ColsAtCompileTime>(derived().cols()),Specialized);
}; }
template<typename Indices> template<typename Indices>
typename IvcColType<Indices>::type typename IvcColType<Indices>::type
ivcSize(const Indices& indices) const { ivcSize(const Indices& indices) const {
return internal::makeIndexedViewCompatible(indices, internal::variable_if_dynamic<Index,SizeAtCompileTime>(derived().size()),Specialized); return internal::makeIndexedViewCompatible(indices, internal::variable_if_dynamic<Index,SizeAtCompileTime>(derived().size()),Specialized);
}; }
template<typename RowIndices, typename ColIndices> template<typename RowIndices, typename ColIndices>
struct valid_indexed_view_overload { struct valid_indexed_view_overload {