2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-19 14:52:17 +00:00

typedef size_type for triangular_matrix

[SVN r23615]
This commit is contained in:
Michael Stevens
2004-07-16 08:39:58 +00:00
parent af80d0e8e8
commit 5604817be0

View File

@@ -1016,6 +1016,7 @@ namespace boost { namespace numeric { namespace ublas {
#ifndef BOOST_UBLAS_NO_DERIVED_HELPERS
BOOST_UBLAS_USING banded_matrix<T, F, A>::operator =;
#endif
typedef std::size_t size_type;
typedef banded_matrix<T, F, A> matrix_type;
// Construction and destruction
@@ -1023,10 +1024,10 @@ namespace boost { namespace numeric { namespace ublas {
diagonal_matrix ():
matrix_type () {}
BOOST_UBLAS_INLINE
diagonal_matrix (std::size_t size):
diagonal_matrix (size_type size):
matrix_type (size, size) {}
BOOST_UBLAS_INLINE
diagonal_matrix (std::size_t size1, std::size_t size2):
diagonal_matrix (size_type size1, size_type size2):
matrix_type (size1, size2) {}
template<class AE>
BOOST_UBLAS_INLINE