1. 27 Aug, 2017 1 commit
  2. 20 Aug, 2017 3 commits
  3. 19 Aug, 2017 1 commit
    • Henry Schreiner's avatar
      Add one more CMake warning fix · 6efbccb3
      Henry Schreiner authored
      This will remove one more warning that can't be stopped from a calling CMakeLists. This possibly should be set to new at some point (CMake 3.3 behavior would be different / better), as well as 0048.
      6efbccb3
  4. 10 Aug, 2017 1 commit
  5. 07 Aug, 2017 1 commit
  6. 22 Jul, 2017 1 commit
    • Mário Feroldi's avatar
      Suppress warning about missing noreturn attribute (#549) · d16c4d20
      Mário Feroldi authored
      Suppress warning about missing noreturn attribute
      
      Adding `[[noreturn]]` to `report_unknown_type` suppresses the Clang/GCC `-Wmissing-noreturn` warning:
      
      Clang outputs:
      
          .../fmt/fmt/format.cc:294:74: warning:
                function 'report_unknown_type' could be declared with
                attribute 'noreturn' [-Wmissing-noreturn]
            ...code, const char *type) {
                                       ^
      
      GCC outputs:
      
          .../fmt/fmt/format.cc:294:74: warning: function might be candidate for
              attribute 'noreturn' [-Wsuggest-attribute=noreturn]
            ...code, const char *type) {
                                       ^
      d16c4d20
  7. 18 Jul, 2017 1 commit
  8. 16 Jul, 2017 1 commit
  9. 14 Jul, 2017 1 commit
    • Alexander Bock's avatar
      Update format.h to remove C4574 error on MSVC 14.2 · 81790d72
      Alexander Bock authored
      Similar to the Pullrequest #539, `_SECURE_SCL` caused the same  `warning C4574: '_SECURE_SCL' is defined to be '0': did you mean to use '#if _SECURE_SCL'`.  `_SECURE_SCL` is defined in the `MSVC/14.10.25017/include/yvals.h` by Microsoft itself
      81790d72
  10. 13 Jul, 2017 1 commit
  11. 11 Jul, 2017 1 commit
  12. 10 Jul, 2017 1 commit
  13. 08 Jul, 2017 1 commit
  14. 05 Jul, 2017 1 commit
  15. 01 Jul, 2017 5 commits
  16. 27 Jun, 2017 1 commit
  17. 25 Jun, 2017 4 commits
  18. 22 Jun, 2017 2 commits
  19. 17 Jun, 2017 1 commit
  20. 14 Jun, 2017 1 commit
  21. 29 May, 2017 1 commit
  22. 25 May, 2017 2 commits
  23. 21 May, 2017 1 commit
  24. 20 May, 2017 2 commits
  25. 06 May, 2017 3 commits
  26. 05 May, 2017 1 commit
    • Andreas Schönle's avatar
      Allow compiling and using as DLL in windows (#502) · 79f11dba
      Andreas Schönle authored
      * printf.h fixed to compile clean - need to check whether this is the right
      thing to do
      
      * fix warnings and errors in test compiles with BUILD_SHARED_LIBS
      
      * did requested changes and added one change to allow all tests to succeed
      in windows DLL
      79f11dba