diff --git a/include/spdlog/common.h b/include/spdlog/common.h index 97650d00..13fbe970 100644 --- a/include/spdlog/common.h +++ b/include/spdlog/common.h @@ -101,14 +101,13 @@ using sink_ptr = std::shared_ptr; using sinks_init_list = std::initializer_list; using err_handler = std::function; using string_view_t = fmt::basic_string_view; +using wstring_view_t = fmt::basic_string_view; using memory_buf_t = fmt::basic_memory_buffer; #ifdef SPDLOG_WCHAR_TO_UTF8_SUPPORT #ifndef _WIN32 #error SPDLOG_WCHAR_TO_UTF8_SUPPORT only supported on windows #else -using wstring_view_t = fmt::basic_string_view; - template struct is_convertible_to_wstring_view : std::is_convertible {};