mirror of
https://github.com/gabime/spdlog.git
synced 2025-10-02 03:19:02 +08:00
Renamed string_view_type -> string_view_t
This commit is contained in:
@@ -58,9 +58,9 @@ using log_err_handler = std::function<void(const std::string &err_msg)>;
|
||||
|
||||
// string_view type - either std::string_view or fmt::string_view (pre c++17)
|
||||
#if defined(FMT_USE_STD_STRING_VIEW)
|
||||
using string_view_type = std::string_view;
|
||||
using string_view_t = std::string_view;
|
||||
#else
|
||||
using string_view_type = fmt::string_view;
|
||||
using string_view_t = fmt::string_view;
|
||||
#endif
|
||||
|
||||
#if defined(SPDLOG_NO_ATOMIC_LEVELS)
|
||||
|
Reference in New Issue
Block a user