fixes for std format

pull/2690/head
M. Galib Uludag 2 years ago committed by GitHub
parent 1d24268488
commit f34a99fb90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -123,12 +123,14 @@
namespace spdlog {
class formatter;
#if !defined(SPDLOG_USE_STD_FORMAT)
template <typename Char>
#if FMT_VERSION >= 90101
# if FMT_VERSION >= 90101
using fmt_runtime_string = fmt::runtime_format_string<Char>;
#else
# else
using fmt_runtime_string = fmt::basic_runtime<Char>;
# endif
#endif
struct source_loc

Loading…
Cancel
Save