From e1a67b5285a4f40054b89db4e75774365ec4d3fa Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Mon, 10 Jun 2019 06:54:09 -0700 Subject: [PATCH] Remove TODO --- include/fmt/core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");