openfoam/applications/utilities/mesh/generation/snappyHexMesh
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
meshQualityDict STYLE: use #includeEtc in tutorial cases 2017-06-21 16:42:57 +01:00
snappyHexMesh.C STYLE: use direct iteration for HashSet 2018-03-06 00:29:03 +01:00
snappyHexMeshDict ENH: snappyHexMeshDict: changed 17x to 1.7.x 2018-04-18 11:32:59 +01:00