openfoam/applications/utilities/surface/surfaceRedistributePar
Mark Olesen 9c7aa9727a ENH: add UPstream::parRun(const bool)
- slightly neater code when disabling/restoring parallel state

  New
      const bool oldParRun = Pstream::parRun(false);
      ...
      Pstream::parRun(oldParRun);

  Old
      const bool oldParRun = Pstream::parRun();
      Pstream::parRun() = false;
      ...
      Pstream::parRun() = oldParRun;
2020-10-12 12:51:22 +02:00
..
Make COMP: adjust compilation order with updated interdependencies 2019-04-28 14:44:33 +02:00
surfaceRedistributePar.C ENH: add UPstream::parRun(const bool) 2020-10-12 12:51:22 +02:00