mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
chemPointISAT: Removed deprecated 'register' type specifier
This commit is contained in:
@ -663,9 +663,9 @@ bool Foam::chemPointISAT<CompType, ThermoType>::grow(const scalarField& phiq)
|
||||
scalarField u(gamma*phiTilde);
|
||||
scalarField v(dim, 0);
|
||||
|
||||
for ( label i=0; i<dim; i++)
|
||||
for (label i=0; i<dim; i++)
|
||||
{
|
||||
for (register label j=0; j<=i;j++)
|
||||
for (label j=0; j<=i;j++)
|
||||
{
|
||||
v[i] += phiTilde[j]*LT_(j, i);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user