codedFvModelTemplate.C: Added missing return statement

This commit is contained in:
Henry Weller
2021-09-14 21:39:24 +01:00
parent 47014e0c7c
commit b03b6f0dc4

View File

@ -188,6 +188,7 @@ void ${typeName}FvModel${SourceType}::updateMesh(const mapPolyMesh& mpm)
bool ${typeName}FvModel${SourceType}::movePoints()
{
set_.movePoints();
return true;
}