From 7ed5c6942cdb3c010ec4ebf9b8d8631f6f4961ba Mon Sep 17 00:00:00 2001 From: rimathia Date: Fri, 13 Nov 2020 21:03:05 +0100 Subject: [PATCH] remove now unnecessary overload --- include/fmt/format.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 4e461f7d..b8b64a30 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -2063,13 +2063,6 @@ OutputIt write(OutputIt out, basic_string_view value) { return base_iterator(out, it); } -template -buffer_appender write(buffer_appender out, - basic_string_view value) { - get_container(out).append(value.begin(), value.end()); - return out; -} - template ::value && !std::is_same::value &&