From f8b59251c4b7153bbff4c57ba7fdc0c0838c2756 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 24 Aug 2019 12:48:24 -0700 Subject: [PATCH] Remove unused preparator --- include/fmt/compile.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/include/fmt/compile.h b/include/fmt/compile.h index 53923480..194c86d2 100644 --- a/include/fmt/compile.h +++ b/include/fmt/compile.h @@ -506,18 +506,6 @@ template struct preparator { return prepared_format_type(std::move(format)); } }; - -template -struct preparator> { - using prepared_format_type = - prepared_format; - - static auto prepare(PassedFormat format) -> prepared_format_type { - return prepared_format_type(std::move(format)); - } -}; } // namespace internal #if FMT_USE_CONSTEXPR