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

[uBLAS] FIX other is static member function

[SVN r36351]
This commit is contained in:
Michael Stevens
2006-12-12 19:26:25 +00:00
parent e6b11310f6
commit 545672c8a8

View File

@@ -642,7 +642,7 @@ namespace boost { namespace numeric { namespace ublas {
typename matrix_column<expression1_type>::const_iterator itc (mc.begin ());
typename matrix_column<expression1_type>::const_iterator itc_end (mc.end ());
while (itc != itc_end) {
if (triangular_restriction::functor_type ().other (itc.index (), it2.index2 ()))
                   if (triangular_restriction::other (itc.index (), it2.index2 ()))
m (itc.index (), it2.index2 ()) += *it1 * *itc;
++ itc;
}