2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-21 03:22:14 +00:00

uBLAS FIX corrected basic_full::packed_size interface. Thanks to Hidekaz Ikeno

[SVN r33985]
This commit is contained in:
Michael Stevens
2006-05-17 16:43:19 +00:00
parent d9e12768bc
commit 31ce5aee40

View File

@@ -1750,7 +1750,7 @@ namespace boost { namespace numeric { namespace ublas {
template<class L>
static
BOOST_UBLAS_INLINE
size_type packed_size (size_type size1, size_type size2) {
size_type packed_size (L, size_type size1, size_type size2) {
return L::storage_size (size1, size2);
}