Skip to content
Snippets Groups Projects
Commit 159e79f6 authored by graham's avatar graham
Browse files

COMP: More clang caught compilation errors.

parent 4dd1e92f
No related merge requests found
......@@ -12,14 +12,14 @@ tmp<fv::convectionScheme<scalar> > mvConvection
combustion->correct();
dQ = combustion->dQ();
label inertIndex = -1;
volScalarField Yt = 0.0*Y[0];
volScalarField Yt(0.0*Y[0]);
forAll(Y, i)
{
if (Y[i].name() != inertSpecie)
{
volScalarField& Yi = Y[i];
fvScalarMatrix R = combustion->R(Yi);
fvScalarMatrix R(combustion->R(Yi));
fvScalarMatrix YiEqn
(
......
......@@ -345,7 +345,7 @@ void Foam::SprayCloud<CloudType>::motion(TrackData& td)
parcelType& p = iter();
if (p.mass() < VSMALL)
{
deleteParticle(p);
this->deleteParticle(p);
}
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment