src/OpenFOAM/matrices: Reformatted for-loops consistently

This commit is contained in:
Henry Weller
2016-03-23 18:27:04 +00:00
parent a08adf25de
commit 1ec47384bb
16 changed files with 80 additions and 80 deletions

View File

@ -86,7 +86,7 @@ inline Foam::RectangularMatrix<Type>::RectangularMatrix
:
Matrix<RectangularMatrix<Type>, Type>(n, n, Zero)
{
for (label i = 0; i < n; i++)
for (label i=0; i<n; i++)
{
this->operator()(i, i) = I;
}