Renamed string_view_type -> string_view_t

This commit is contained in:
gabime
2018-10-21 23:50:07 +03:00
parent 871cca2401
commit 392d126372
7 changed files with 15 additions and 15 deletions

View File

@@ -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)