summaryrefslogtreecommitdiffstats
path: root/externals/fmt (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-04-06Update fmtlib to fix msvc warningsJames Rowe1-0/+0
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
2018-04-02externals: Update fmt to 4d35f94Daniel Lim Wee Soong1-0/+0
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.
2017-05-27Add the fmt string formatting libraryYuri Kunde Schlesner1-0/+0
More info at http://fmtlib.net/ This commit was based on @jroweboy's work on his spdlog branch, but with modifications.