use colmem instead of recalculating colptr

This commit is contained in:
conrad
2021-09-14 14:40:02 +10:00
parent 5de154398f
commit 7c7c94e831
+1 -1
View File
@@ -386,7 +386,7 @@ struct quasi_unwrap< subview_col<eT> >
inline
quasi_unwrap(const subview_col<eT>& A)
: orig( A.m )
, M ( const_cast<eT*>( A.colptr(0) ), A.n_rows, false, false )
, M ( const_cast<eT*>( A.colmem ), A.n_rows, false, false )
{
arma_extra_debug_sigprint();
}