openfoam/applications/utilities/mesh/conversion/writeMeshObj
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 remove trailing space from some files 2009-12-04 13:39:35 +01:00
writeMeshObj.C STYLE: use direct iteration for HashSet 2018-03-06 00:29:03 +01:00