mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: use forAllIter, forAllConstIter instead of long-hand version
STYLE: use 'forAll(' NOT 'forAll (', as per coding guide
This commit is contained in:
@ -356,12 +356,7 @@ void writePointCells
|
||||
|
||||
label vertI = 0;
|
||||
|
||||
for
|
||||
(
|
||||
labelHashSet::const_iterator iter = allEdges.begin();
|
||||
iter != allEdges.end();
|
||||
++iter
|
||||
)
|
||||
forAllConstIter(labelHashSet, allEdges, iter)
|
||||
{
|
||||
const edge& e = mesh.edges()[iter.key()];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user