openfoam/applications/utilities/mesh/manipulation/mergeMeshes
Mark Olesen 5680ce1ee2 STYLE: use spanstream instead of stringstream in more places
- particularly useful in these combinations:

  1.
      OCharStream buf;
      // populate

      ISpanStream is(buf.view());
      // parse

  2.
      // read from file
      ifile.getLine(str);

      ISpanStream is(str);
      // parse

  These avoid making a copy of the character content, compared to
  versions with stringstream:

      OStringStream buf;
      IStringStream is(buf.str());
2024-03-07 15:04:54 +01:00
..
Make COMP: missing linkage, unneeded linkage 2022-04-29 13:26:36 +02:00
createTimes.H mergeMeshes: Disable functionObjects 2015-10-23 12:41:46 +01:00
mergeMeshes.C ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
mergePolyMesh.C STYLE: use spanstream instead of stringstream in more places 2024-03-07 15:04:54 +01:00
mergePolyMesh.H Merge commit 'e9219558d7' into develop-v1906 2019-12-05 11:47:19 +00:00