diff --git a/include/fmt/base.h b/include/fmt/base.h index 545724f23ccb..18fe100384ae 100644 --- a/include/fmt/base.h +++ b/include/fmt/base.h @@ -1202,12 +1202,6 @@ FMT_CONSTEXPR inline auto is_locking() -> bool { } // An optimized version of std::copy with the output value type (T). -template -auto copy(InputIt begin, InputIt end, appender out) -> appender { - get_container(out).append(begin, end); - return out; -} - template ::value)> auto copy(InputIt begin, InputIt end, OutputIt out) -> OutputIt {