mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-21 00:59:36 +08:00
Fix useless ';' warning
This commit is contained in:
parent
28351073d8
commit
98dfe0c13f
@ -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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user