mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
src/OpenFOAM/matrices: Reformatted for-loops consistently
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user