Skip to content
Snippets Groups Projects
  1. Jan 22, 2018
  2. Jan 19, 2018
  3. Jan 18, 2018
  4. Jan 17, 2018
  5. Jan 16, 2018
    • Mark OLESEN's avatar
      ENH: SubStrings::str(int) method for similarity with std::smatch · 12aa2d3c
      Mark OLESEN authored
      - define regExp::results_type using SubStrings container for handling
        groups. This makes a later shift to std::smatch easier, but changes
        the regExp API for matching with groups. Previously had list element
        0 for regex group 1, now list element 0 is the entire match and list
        element 1 is regex group 1.
      
        Old:
            List<std::string> mat;
            if (re.match(text, mat))  Info<< "group 1: " << mat[0] << nl;
      
        New:
            regExp::results_type mat;
            if (re.match(text, mat))  Info<< "group 1: " << mat.str(1) << nl;
      12aa2d3c
    • Mark OLESEN's avatar
      BUG: spurious empty surface zones added (fixes #706) · 82a9f2c9
      Mark OLESEN authored
      - problems were introduced by the change ee252307 (issue #686).
        Affected reading of OBJ files.
      
        The fallback zone (used to catch unnamed groups/zones), which was
        previously filtered away when not needed. Now handle more explicitly.
      
      ENH: use stringOps::split and low-level read{Label,Scalar} for parsing OBJ file
      82a9f2c9
    • Mark OLESEN's avatar
      CONFIG: typo in config.csh/mpi · ff07ae15
      Mark OLESEN authored
      - also handle stray semi-colons in foamCleanPath.
        Treat like a ':' separator.
        They are incorrect and potentially problematic for shell evals.
      ff07ae15
  6. Jan 15, 2018
  7. Jan 12, 2018
  8. Jan 11, 2018
  9. Jan 10, 2018
  10. Jan 09, 2018
  11. Jan 08, 2018