solver: Remove unused bool return from moveMesh method

This commit is contained in:
Will Bainbridge
2023-02-02 11:37:47 +00:00
parent df0f7f16be
commit efa8cae943
15 changed files with 20 additions and 55 deletions

View File

@ -71,16 +71,12 @@ void Foam::solvers::movingMesh::preSolve()
}
bool Foam::solvers::movingMesh::moveMesh()
void Foam::solvers::movingMesh::moveMesh()
{
if (pimple.firstIter() || pimple.moveMeshOuterCorrectors())
{
mesh.move();
return true;
}
return false;
}