From 2d1e4bb35e93f050d4cebc3ef6f5559ae448f4ea Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 25 Nov 2023 09:05:20 -0800 Subject: [PATCH] Remove a useless comment --- include/fmt/format.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index d4d20965..8762826e 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -1028,7 +1028,6 @@ class basic_memory_buffer final : public detail::buffer { /** 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::append; template void append(const ContiguousRange& range) {