openfoam/applications/utilities/preProcessing/createZeroDirectory
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
boundaryInfo.C ENH: minor simplifications for handling region meshes 2023-12-07 17:42:24 +01:00
boundaryInfo.H
boundaryTemplates.C
boundaryTemplates.H
caseInfo.C
caseInfo.H
createZeroDirectory.C STYLE: use spanstream instead of stringstream in more places 2024-03-07 15:04:54 +01:00
solverTemplate.C STYLE: prefer REGISTER/NO_REGISTER instead of true/false for IOobject 2023-03-10 14:16:32 +00:00
solverTemplate.H