From 1b82c65d41e1c864241ed3e1e96dfba3dc072e55 Mon Sep 17 00:00:00 2001 From: Barry Revzin Date: Wed, 27 Jul 2022 08:13:26 -0500 Subject: [PATCH] Forgot to delete these. --- include/fmt/ranges.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/include/fmt/ranges.h b/include/fmt/ranges.h index f82e7164..eed84a12 100644 --- a/include/fmt/ranges.h +++ b/include/fmt/ranges.h @@ -309,16 +309,6 @@ OutputIt write_range_entry(OutputIt out, const Arg& v) { return write(out, v); } -inline FMT_CONSTEXPR const char* choose_literal(std::true_type, - const char* literal, - const wchar_t*) noexcept { - return literal; -} -inline FMT_CONSTEXPR const wchar_t* choose_literal( - std::false_type, const char*, const wchar_t* literal) noexcept { - return literal; -} - template struct string_literal { static constexpr CharT value[] = {C...}; constexpr operator basic_string_view() const {