1. 24 Dec, 2019 3 commits
  2. 22 Dec, 2019 4 commits
  3. 21 Dec, 2019 3 commits
  4. 18 Dec, 2019 7 commits
  5. 17 Dec, 2019 1 commit
  6. 16 Dec, 2019 2 commits
  7. 15 Dec, 2019 4 commits
  8. 14 Dec, 2019 3 commits
  9. 13 Dec, 2019 3 commits
    • Victor Zverovich's avatar
      Fix a typo · adbed11e
      Victor Zverovich authored
      adbed11e
    • iPherian's avatar
      Squelch MSVC warning exporting subclasses of runtime_error (fix for PR #1433) (#1470) · 8ab1c5c6
      iPherian authored
      * Squelch MSVC warning exporting subclasses of runtime_error
      
      When compiling {fmt} as a DLL, MSVC complains that we are exporting
      classes that inherit from "std::runtime_error", which we are not
      exporting.
      
      In this case, it's not really a problem because that symbol is already
      exported via the C++ stdlib. So we just add a pragma to silence the
      warning.
      
      * Fix compilation with MinGW
      
      Commit 3bc28fcc ("Squelch MSVC warning exporting subclasses of
      runtime_error", 2019-11-29) silenced a MSVC warning under. The MinGW
      compiler also defines _WIN32, but does not support the "warning" pragma.
      
      Introduce a helper macro to squelch the MSVC warning only when using the
      Microsoft compiler.
      Signed-off-by: default avatarBeat Bolli <dev@drbeat.li>
      
      * Fix compilation with VS2015 (#1450)
      
      VS2015 does not support the __pragma(...) syntax in the midst of a
      class declaration, so move it to just before the declaration.
      8ab1c5c6
    • Victor Zverovich's avatar
      Improve error reporting · a770009f
      Victor Zverovich authored
      a770009f
  10. 12 Dec, 2019 1 commit
  11. 11 Dec, 2019 6 commits
  12. 09 Dec, 2019 3 commits