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 &&