From 1d2138fdbec1b2d9f2623853d9ab26b0e9d00532 Mon Sep 17 00:00:00 2001 From: gabime Date: Fri, 29 Nov 2024 13:56:45 +0200 Subject: [PATCH] always use std::string_view and remove is_convertible_to_sv --- include/spdlog/common.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/spdlog/common.h b/include/spdlog/common.h index b98cbd55..a586bf7b 100644 --- a/include/spdlog/common.h +++ b/include/spdlog/common.h @@ -133,10 +133,6 @@ using wmemory_buf_t = fmt::basic_memory_buffer; #define SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_INFO #endif -// Is convertable to string_view_t ? -template -using is_convertible_to_sv = std::enable_if_t>; - // Log level enum enum class level { trace = SPDLOG_LEVEL_TRACE,