Remove uses of buffer_range

This commit is contained in:
Victor Zverovich
2020-05-29 21:30:20 -07:00
parent 8f2b5fe74d
commit 7d22bebb6f
2 changed files with 15 additions and 16 deletions

View File

@@ -587,7 +587,7 @@ void buffer<T>::append(const U* begin, const U* end) {
}
} // namespace detail
// A range with an iterator appending to a buffer.
// DEPRECATED! A range with an iterator appending to a buffer.
template <typename T>
class buffer_range
: public detail::output_range<std::back_insert_iterator<detail::buffer<T>>,