Skip to content
Snippets Groups Projects
  1. Apr 20, 2020
  2. Apr 17, 2020
  3. Apr 15, 2020
  4. Apr 14, 2020
  5. Apr 09, 2020
  6. Apr 08, 2020
  7. Apr 06, 2020
  8. Apr 03, 2020
  9. Apr 02, 2020
  10. Apr 01, 2020
    • Mark OLESEN's avatar
      ENH: adjustments to error streams · 617b6027
      Mark OLESEN authored
      - refactor common exit/abort code
      
      - support single-parameter output. Eg,
      
          FatalError("some-executable")
              << "Cannot load something\n"
              << exit(FatalError);
      617b6027
    • Mark OLESEN's avatar
      ENH: add a Pstream::shutdown() method (#1660) · 01f65054
      Mark OLESEN authored
      - previously used a Pstream::exit() invoked from the argList
        destructor to handle all MPI shutdown, but this has the unfortunate
        side-effect of using a fixed return value for the program exit.
      
        Instead use the Pstream::shutdown() method in the destructor and allow
        the normal program exit codes as usual. This means that the
        following code now works as expected.
      
        ```
        argList args(...);
      
        if (...)
        {
            InfoErr<< "some error\n";
            return 1;
        }
        ```
      01f65054
    • Andrew Heather's avatar
    • Mark OLESEN's avatar
      GIT: remove unused files · b2a3e948
      Mark OLESEN authored
      - orphaned file: extendedFeatureEdgeMeshI.H
      
      - unused primitiveFaceZone typedef.
        Identical to indirectPrimitivePatch typedef
      b2a3e948
  11. Mar 30, 2020