1. 14 Mar, 2020 4 commits
  2. 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
  3. 12 Mar, 2020 1 commit
  4. 11 Mar, 2020 2 commits
  5. 09 Mar, 2020 3 commits
  6. 07 Mar, 2020 3 commits
  7. 06 Mar, 2020 2 commits
  8. 05 Mar, 2020 3 commits
  9. 04 Mar, 2020 3 commits
  10. 01 Mar, 2020 4 commits
  11. 27 Feb, 2020 1 commit
  12. 26 Feb, 2020 1 commit
  13. 24 Feb, 2020 1 commit
  14. 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
  15. 21 Feb, 2020 1 commit
  16. 19 Feb, 2020 1 commit
  17. 15 Feb, 2020 1 commit
  18. 14 Feb, 2020 1 commit
  19. 10 Feb, 2020 1 commit
  20. 08 Feb, 2020 2 commits
  21. 07 Feb, 2020 1 commit
  22. 06 Feb, 2020 1 commit
  23. 01 Feb, 2020 1 commit