2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-22 15:52:18 +00:00

FIX missing return in map_capacity

This commit is contained in:
Michael Stevens
2004-10-04 07:28:27 +00:00
parent b344eb93ef
commit e637fee552

View File

@@ -546,7 +546,7 @@ namespace boost { namespace numeric { namespace ublas {
template<class I, class T, class ALLOC>
BOOST_UBLAS_INLINE
typename map_array<I, T, ALLOC>::size_type map_capacity (map_array<I, T, ALLOC> &m) {
m.capacity ();
return m.capacity ();
}
}