From 25adca5666a55b732e38182691914d7a35fade0c Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 13 Jul 2024 13:07:57 -0700 Subject: [PATCH] Remove redundant overload --- include/fmt/base.h | 6 ------ 1 file changed, 6 deletions(-) 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 {