remove workaround for old versions of Armadillo

This commit is contained in:
conradsnicta
2024-07-11 04:40:17 +00:00
committed by GitHub
parent 32958a7fbd
commit c39b2f90d0
@@ -77,11 +77,6 @@ struct MatTypeTraits<arma::SpSubview<eT>>
};
#if ((ARMA_VERSION_MAJOR >= 10) || \
((ARMA_VERSION_MAJOR == 9) && (ARMA_VERSION_MINOR >= 869)))
// Armadillo 9.869+ has SpSubview_col and SpSubview_row
template<typename eT>
struct MatTypeTraits<arma::SpSubview_col<eT>>
{
@@ -98,9 +93,6 @@ struct MatTypeTraits<arma::SpSubview_row<eT>>
"or a matrix alias instead!");
};
#endif
template<typename eT>
struct MatTypeTraits<arma::Cube<eT>>
{