Porting: typed label bug fix. Daniel Khazaei
This commit is contained in:
parent
f97c0f81ab
commit
ef519cd839
1 changed files with 4 additions and 4 deletions
|
@ -1343,8 +1343,8 @@ void Foam::refinement::setRefinement(polyTopoChange& ref) const
|
||||||
mesh_,
|
mesh_,
|
||||||
pointLevel_,
|
pointLevel_,
|
||||||
maxEqOp<label>(),
|
maxEqOp<label>(),
|
||||||
0, // Null value
|
label(0), // Null value
|
||||||
true // Apply separation for parallel cyclics
|
true // Apply separation for parallel cyclics
|
||||||
);
|
);
|
||||||
|
|
||||||
// Set refinement and unrefinement
|
// Set refinement and unrefinement
|
||||||
|
@ -1512,8 +1512,8 @@ void Foam::refinement::updateMesh(const mapPolyMesh& map)
|
||||||
mesh_,
|
mesh_,
|
||||||
newPointLevel,
|
newPointLevel,
|
||||||
maxEqOp<label>(),
|
maxEqOp<label>(),
|
||||||
0, // Null value
|
label(0), // Null value
|
||||||
true // Apply separation for parallel cyclics
|
true // Apply separation for parallel cyclics
|
||||||
);
|
);
|
||||||
|
|
||||||
// Transfer the new point level into the data member
|
// Transfer the new point level into the data member
|
||||||
|
|
Reference in a new issue