openfoam/applications/utilities/mesh/manipulation/renumberMesh
Mark Olesen 4fe8ed8245 STYLE: use direct iteration for HashSet
- The iterator for a HashSet dereferences directly to its key.

- Eg,

      for (const label patchi : patchSet)
      {
          ...
      }
  vs.
      forAllConstIter(labelHashSet, patchSet, iter)
      {
          const label patchi = iter.key();
          ...
      }
2018-03-06 00:29:03 +01:00
..
Make CONFIG: adjust make scripts for darwin 2018-04-24 21:20:06 +02:00
Allwmake ENH: improve handling of ThirdParty packages 2018-04-24 14:51:19 +02:00
renumberMesh.C STYLE: use direct iteration for HashSet 2018-03-06 00:29:03 +01:00
renumberMeshDict STYLE: Correcting typos 2018-03-28 17:14:16 +01:00