Forgot to delete these.

This commit is contained in:
Barry Revzin 2022-07-27 08:13:26 -05:00
parent d29a28f623
commit 1b82c65d41

View File

@ -309,16 +309,6 @@ OutputIt write_range_entry(OutputIt out, const Arg& v) {
return write<Char>(out, v); return write<Char>(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 <typename CharT, CharT... C> struct string_literal { template <typename CharT, CharT... C> struct string_literal {
static constexpr CharT value[] = {C...}; static constexpr CharT value[] = {C...};
constexpr operator basic_string_view<CharT>() const { constexpr operator basic_string_view<CharT>() const {