Fix ivcSize return type in IndexedViewMethods.h

This commit is contained in:
Charles Schlosser 2023-07-03 03:49:37 +00:00
parent 3791ac8a1a
commit 15ac3765c4

View File

@ -37,7 +37,7 @@ inline IvcColType<Indices> ivcCol(const Indices& indices) const {
}
template <typename Indices>
inline IvcColType<Indices> ivcSize(const Indices& indices) const {
inline IvcType<Indices> ivcSize(const Indices& indices) const {
return internal::makeIndexedViewCompatible(
indices, internal::variable_if_dynamic<Index, SizeAtCompileTime>(derived().size()), Specialized);
}