mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: use HashTable iterator 'val()' method instead of 'object()'
This commit is contained in:
@ -1185,7 +1185,7 @@ Foam::label Foam::isoSurfaceCell::markDanglingTriangles
|
||||
// with only one connected edge (= this edge)
|
||||
|
||||
const label edgeI = iter.key();
|
||||
const labelList& otherEdgeFaces = iter.object();
|
||||
const labelList& otherEdgeFaces = iter.val();
|
||||
|
||||
// Remove all dangling triangles
|
||||
if (danglingTriangle(faceEdges[edgeFace0[edgeI]], edgeFace1))
|
||||
|
||||
Reference in New Issue
Block a user