openfoam/applications/utilities/mesh/advanced/PDRMesh
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 applications: Added fvOptions library to link 2015-12-01 16:09:19 +00:00
PDRMesh.C STYLE: use direct iteration for HashSet 2018-03-06 00:29:03 +01:00
PDRMeshDict ENH: glboal file handling: initial commit 2016-01-25 13:03:15 +00:00