Remove a useless comment

This commit is contained in:
Victor Zverovich 2023-11-25 09:05:20 -08:00
parent 7f8d419115
commit 2d1e4bb35e

View File

@ -1028,7 +1028,6 @@ class basic_memory_buffer final : public detail::buffer<T> {
/** Increases the buffer capacity to *new_capacity*. */
void reserve(size_t new_capacity) { this->try_reserve(new_capacity); }
// Directly append data into the buffer
using detail::buffer<T>::append;
template <typename ContiguousRange>
void append(const ContiguousRange& range) {