Porting: typed label bug fix. Daniel Khazaei

This commit is contained in:
Hrvoje Jasak 2019-04-30 15:44:41 +01:00
parent f97c0f81ab
commit ef519cd839

View file

@ -1343,7 +1343,7 @@ void Foam::refinement::setRefinement(polyTopoChange& ref) const
mesh_,
pointLevel_,
maxEqOp<label>(),
0, // Null value
label(0), // Null value
true // Apply separation for parallel cyclics
);
@ -1512,7 +1512,7 @@ void Foam::refinement::updateMesh(const mapPolyMesh& map)
mesh_,
newPointLevel,
maxEqOp<label>(),
0, // Null value
label(0), // Null value
true // Apply separation for parallel cyclics
);