fix msvc wchar_t ambiguity

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

@ -156,7 +156,7 @@ struct format_string_wrapper
: fmt_{fmtstr}
, loc_{loc}
{}
#if !defined(SPDLOG_USE_STD_FORMAT) && FMT_VERSION >= 80000
#if SPDLOG_CPLUSPLUS > 201703L && !defined(SPDLOG_USE_STD_FORMAT) && FMT_VERSION >= 80000
format_string_wrapper(fmt::basic_runtime<Char> fmtstr, details::source_location loc = details::source_location::current())
: fmt_{fmtstr}
, loc_{loc}

Loading…
Cancel
Save