1. 18 Jul, 2023 3 commits
  2. 17 Jul, 2023 5 commits
  3. 16 Jul, 2023 2 commits
  4. 14 Jul, 2023 5 commits
  5. 13 Jul, 2023 5 commits
  6. 12 Jul, 2023 5 commits
  7. 11 Jul, 2023 8 commits
  8. 10 Jul, 2023 6 commits
  9. 09 Jul, 2023 1 commit
    • Dominik Charousset's avatar
      Add format API scaffolding · b19c8721
      Dominik Charousset authored
      The new `detail::format` and `detail::format_to` functions enable
      format-based outputs in the new unit testing framework and gives us the
      option to re-write the logging API without relying on the `std::ostream`
      interfaces. These functions provide a thin wrapper around `std::format`.
      In case the standard version is not available, we fall back to a minimal
      implementation that delegates formatting of floats and integers to
      `snprintf`.
      b19c8721