openfoam/applications
Mark Olesen 5022591c36 ENH: return old file handler on change
- intended for the following type of use:

      auto oldHandler = fileHandler(fileOperation::NewUncollated());

      ... do something that only works with uncollated

      // Restore previous (if any)
      if (oldHandler)
      {
          fileHandler(std::move(oldHandler));
      }

ENH: make fileOperation distributed(bool) mutable

- use is "static-like" and akin to Pstream::parRun(bool),
  thus allow toggling of the switch without a const_cast
2021-05-13 11:39:30 +02:00
..
solvers STYLE: make polyMesh constructor explicit 2021-05-12 11:24:57 +02:00
test STYLE: make polyMesh constructor explicit 2021-05-12 11:24:57 +02:00
tools ENH: support field width for #eval expressions 2021-03-29 16:00:11 +02:00
utilities ENH: return old file handler on change 2021-05-13 11:39:30 +02:00
Allwmake