Added braces to one-line for loop.

This commit is contained in:
Markus Blatt 2015-12-02 11:29:38 +01:00
parent 99c1b988a7
commit cb9d566ec2

View File

@ -173,7 +173,9 @@ public:
auto rhs(v[row.index()]);
auto col = row->beforeEnd();
for( ; col.index() > row.index(); --col)
{
col->mmv(v[col.index()], rhs);
}
v[row.index()] = 0;
col->umv(rhs, v[row.index()]);
}