1. 19 Mar, 2020 2 commits
  2. 17 Mar, 2020 3 commits
  3. 16 Mar, 2020 2 commits
  4. 15 Mar, 2020 1 commit
  5. 14 Mar, 2020 4 commits
  6. 13 Mar, 2020 1 commit
    • Dair Grant's avatar
      Add FMT_HAS_CPP14_ATTRIBUTE / FMT_HAS_CPP17_ATTRIBUTE to test for language-specific attributes. · 02bfd8a9
      Dair Grant authored
      FMT_DEPRECATED is now defined as FMT_HAS_CPP14_ATTRIBUTE(deprecated), as this attribute was introduced in C++14.
      
      FMT_FALLTHROUGH is now defined as FMT_HAS_CPP17_ATTRIBUTE(fallthrough), as this attribute was introduced in C++17.
      
      FMT_MAYBE_UNUSED is defined as FMT_HAS_CPP17_ATTRIBUTE(maybe_unused), as this attribute was introduced in C++17.
      
      FMT_MAYBE_UNUSED has been applied to fix a couple of -Wunused-member-function warnings from clang.
      02bfd8a9
  7. 12 Mar, 2020 1 commit
  8. 11 Mar, 2020 2 commits
  9. 09 Mar, 2020 3 commits
  10. 07 Mar, 2020 3 commits
  11. 06 Mar, 2020 2 commits
  12. 05 Mar, 2020 3 commits
  13. 04 Mar, 2020 3 commits
  14. 01 Mar, 2020 4 commits
  15. 27 Feb, 2020 1 commit
  16. 26 Feb, 2020 1 commit
  17. 24 Feb, 2020 1 commit
  18. 23 Feb, 2020 1 commit
    • fghzxm's avatar
      Fix FMT_FORMAT_AS const specifier position (#1554) · 2161a73f
      fghzxm authored
      The current `FMT_FORMAT_AS` macro will make `formatter<Char *>::format`
      have the first argument type `const Char *&` which is incorrect an
      should be `Char *const &`.  This pull request fixes that by changing the
      first argument type in the macro definition body from `const Type &` to
      `Type const &`.
      2161a73f
  19. 21 Feb, 2020 1 commit
  20. 19 Feb, 2020 1 commit