From a31ae23db11ce96acec36a493d1f1ee805913f11 Mon Sep 17 00:00:00 2001 From: Charless Milette Date: Sat, 13 Nov 2021 11:43:19 -0500 Subject: [PATCH] Fix build issue when using built-in fmt --- include/spdlog/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/common.h b/include/spdlog/common.h index fb45d2a2..76370d4f 100644 --- a/include/spdlog/common.h +++ b/include/spdlog/common.h @@ -148,7 +148,7 @@ template using format_string_t = fmt::format_string; template -using wformat_string_t = fmt::wformat_string; +using wformat_string_t = fmt::basic_format_string; template using remove_cvref_t = typename std::remove_cv::type>::type;