| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Keeps the library up to date.
|
| |
|
| |
|
|
|
|
| |
This reverts commit ca4ca8a6dc41207de99f67de1931579ceb4d9660.
|
| |
|
|
|
|
| |
Updates fmt from 5.2.1 to 5.3.0
|
|
|
|
| |
It seems to fix msvc warnings
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Previously, we'd get warnings like:
"
c:\projects\yuzu\externals\fmt\include\fmt\format.h(2868): warning
C4127: conditional expression is constant
[C:\projects\yuzu\msvc_build\externals\dynarmic\src\dynarmic.vcxproj]
"
spamming the build output when compiling on Windows. This updates fmt to
include the upstreamed fix that silences this warning.
|
|
|
|
| |
Previously, we were on 4.1.0, which was a major version behind.
|
|
|
|
|
|
| |
Additionally, when updating fmtlib, there was a change in fmtlib broke
how the old logging macro was overloaded, so this works around that by
just naming the fmtlib macro impl something different
|
|
|
|
|
|
|
|
|
|
|
| |
Versions prior to this didn't compile on OpenBSD due to unconditional
use of the non-standard strtod_l() function.
The fmt::MemoryWriter API has been removed in the intervening
versions, so replace its use with fmt::memory_buffer and fmt::format_to.
The library also no longer provides the fmt::fmt ALIAS, so define
it in externals/CMakeLists.txt.
|
|
More info at http://fmtlib.net/
This commit was based on @jroweboy's work on his spdlog branch, but with
modifications.
|