Commit f8b59251 authored by Victor Zverovich's avatar Victor Zverovich

Remove unused preparator

parent 643aa4c8
...@@ -506,18 +506,6 @@ template <typename Format, typename... Args> struct preparator { ...@@ -506,18 +506,6 @@ template <typename Format, typename... Args> struct preparator {
return prepared_format_type(std::move(format)); return prepared_format_type(std::move(format));
} }
}; };
template <typename PassedFormat, typename PreparedFormatFormat,
typename PartsContainer, typename... Args>
struct preparator<PassedFormat, prepared_format<PreparedFormatFormat,
PartsContainer, Args...>> {
using prepared_format_type =
prepared_format<PreparedFormatFormat, PartsContainer, Args...>;
static auto prepare(PassedFormat format) -> prepared_format_type {
return prepared_format_type(std::move(format));
}
};
} // namespace internal } // namespace internal
#if FMT_USE_CONSTEXPR #if FMT_USE_CONSTEXPR
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment