Deprecate convert_to_int

This commit is contained in:
Victor Zverovich
2019-06-07 13:38:08 -07:00
parent 40779749ac
commit cb4c59495e
6 changed files with 60 additions and 54 deletions
+1 -3
View File
@@ -3035,7 +3035,7 @@ class format_int {
std::string str() const { return std::string(str_, size()); }
};
// formatter specializations for the core types corresponding to internal::type
// A formatter specialization for the core types corresponding to internal::type
// constants.
template <typename T, typename Char>
struct formatter<T, Char,
@@ -3131,8 +3131,6 @@ FMT_FORMAT_AS(Char*, const Char*);
FMT_FORMAT_AS(std::basic_string<Char>, basic_string_view<Char>);
FMT_FORMAT_AS(std::nullptr_t, const void*);
#undef FMT_FORMAT_AS
template <typename Char>
struct formatter<void*, Char> : formatter<const void*, Char> {
template <typename FormatContext>