From ae753bbdc41896a3494e3f3726a1d3ea78d9a2e8 Mon Sep 17 00:00:00 2001 From: gabime Date: Tue, 26 Nov 2024 22:16:43 +0200 Subject: [PATCH] Fix compile in gcc9 is_convertible_to_sv --- include/spdlog/common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/spdlog/common.h b/include/spdlog/common.h index 20dfdb06e2..4eb451f24c 100644 --- a/include/spdlog/common.h +++ b/include/spdlog/common.h @@ -133,9 +133,9 @@ using wmemory_buf_t = fmt::basic_memory_buffer; #define SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_INFO #endif -// Is convertable to string_view_t ? +// Is convertable to string_view ? template -using is_convertible_to_sv = std::enable_if_t>; +using is_convertible_to_sv = std::enable_if_t>; // Log level enum enum class level {