remove now unnecessary overload

This commit is contained in:
rimathia 2020-11-13 21:03:05 +01:00
parent 6684314ccd
commit 7ed5c6942c

View File

@ -2063,13 +2063,6 @@ OutputIt write(OutputIt out, basic_string_view<Char> value) {
return base_iterator(out, it); return base_iterator(out, it);
} }
template <typename Char>
buffer_appender<Char> write(buffer_appender<Char> out,
basic_string_view<Char> value) {
get_container(out).append(value.begin(), value.end());
return out;
}
template <typename Char, typename OutputIt, typename T, template <typename Char, typename OutputIt, typename T,
FMT_ENABLE_IF(is_integral<T>::value && FMT_ENABLE_IF(is_integral<T>::value &&
!std::is_same<T, bool>::value && !std::is_same<T, bool>::value &&