Skip to content
Snippets Groups Projects
Commit 6f230a8b authored by Andrew Heather's avatar Andrew Heather
Browse files

COMP: Corrections for icc compiler. Fixes #1608

parent ca283776
No related branches found
No related tags found
No related merge requests found
...@@ -118,7 +118,7 @@ Foam::scalar Foam::wallBoundedParticle::trackToEdge ...@@ -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 ...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment