openfoam/applications/utilities/mesh/manipulation/createPatch
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 ENH: topoSet: clear sets upon writing modified mesh. Fixes #129. 2016-11-16 14:58:46 +00:00
createPatch.C STYLE: use direct iteration for HashSet 2018-03-06 00:29:03 +01:00
createPatchDict STYLE: Updated version to 'plus' 2015-12-22 23:14:17 +00:00