From 6be36af0d4f0e2ccd079b94eb8626caaea1493ad Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 27 May 2023 17:16:36 -0700 Subject: [PATCH] Remove udl_formatter --- include/fmt/format.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index ae130126..00a090d5 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -3840,15 +3840,6 @@ FMT_CONSTEXPR void handle_dynamic_spec(int& value, } #if FMT_USE_USER_DEFINED_LITERALS -template struct udl_formatter { - basic_string_view str; - - template - auto operator()(T&&... args) const -> std::basic_string { - return vformat(str, fmt::make_format_args>(args...)); - } -}; - # if FMT_USE_NONTYPE_TEMPLATE_ARGS template Str>