COMP: Corrections for icc compiler. Fixes #1608

This commit is contained in:
Andrew Heather
2020-03-03 17:00:20 +00:00
parent ca28377642
commit 6f230a8b67

View File

@ -118,7 +118,7 @@ Foam::scalar Foam::wallBoundedParticle::trackToEdge
{ {
label nbrCelli = label nbrCelli =
( (
cell() == mesh().faceOwner()[face()] this->cell() == mesh().faceOwner()[face()]
? mesh().faceNeighbour()[face()] ? mesh().faceNeighbour()[face()]
: mesh().faceOwner()[face()] : mesh().faceOwner()[face()]
); );
@ -135,7 +135,7 @@ Foam::scalar Foam::wallBoundedParticle::trackToEdge
// Change into nbrCell. No need to change tetFace, tetPt. // Change into nbrCell. No need to change tetFace, tetPt.
//Pout<< " crossed from cell:" << celli_ //Pout<< " crossed from cell:" << celli_
// << " into " << nbrCelli << endl; // << " into " << nbrCelli << endl;
cell() = nbrCelli; this->cell() = nbrCelli;
patchInteraction(cloud, td, trackFraction); patchInteraction(cloud, td, trackFraction);
} }
else else