Remove unnecessary trait specialization

This commit is contained in:
Victor Zverovich
2024-01-10 18:11:37 -08:00
parent 971f7ae768
commit c5340539f9
2 changed files with 4 additions and 7 deletions
+4
View File
@@ -1087,7 +1087,11 @@ template <typename T> class basic_appender {
}
public:
using iterator_category = int;
using value_type = T;
using difference_type = ptrdiff_t;
using pointer = T*;
using reference = T&;
FMT_UNCHECKED_ITERATOR(basic_appender);
FMT_CONSTEXPR basic_appender(detail::buffer<T>& buf) : buffer_(&buf) {}