diff --git a/include/fmt/core.h b/include/fmt/core.h index 145e3373..49f13881 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -788,7 +788,7 @@ template struct arg_mapper { std::is_constructible, T>::value && !internal::is_string::value)> FMT_CONSTEXPR basic_string_view map(const T& val) { - return basic_string_view(val); // TODO: move to to_string_view + return basic_string_view(val); } FMT_CONSTEXPR const char* map(const signed char* val) { static_assert(std::is_same::value, "invalid string type");