2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-26 05:02:16 +00:00

Fix whitespace so VC8 doesn't complain.

svn path=/trunk/boost/boost/numeric/ublas/; revision=36485
This commit is contained in:
John Maddock
2006-12-22 10:08:28 +00:00
parent ec194ce54d
commit b518154a19

View File

@@ -642,8 +642,8 @@ 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::other (itc.index (), it2.index2 ()))
m (itc.index (), it2.index2 ()) += *it1 * *itc;
if(triangular_restriction::other (itc.index (), it2.index2 ()))
m (itc.index (), it2.index2 ()) += *it1 * *itc;
++ itc;
}
++ it1;