ENH: polyMesh: avoid virtual mechanism

This commit is contained in:
mattijs 2014-08-29 10:37:26 +01:00
parent ca2ed6e1b1
commit ad188431c4

View file

@ -1179,7 +1179,9 @@ Foam::tmp<Foam::scalarField> Foam::polyMesh::movePoints
if (debug && moveError)
{
write();
// Write mesh to ease debugging. Note we want to avoid calling
// e.g. fvMesh::write since meshPhi not yet complete.
polyMesh::write();
}
return sweptVols;