no need for the other format_impl overload

master
Daniel Kolesa 2017-02-11 01:11:22 +01:00
parent 13477db869
commit dc640d2c1e
1 changed files with 0 additions and 10 deletions

View File

@ -914,16 +914,6 @@ namespace detail {
written += twr;
return written;
}
template<typename R>
inline ptrdiff_t format_impl(R &writer, bool, ConstCharRange fmt) {
size_t written = 0;
detail::WriteSpec spec(fmt, false);
if (spec.read_until_spec(writer, &written)) {
throw format_error{"format spec without format arguments"};
}
return written;
}
} /* namespace detail */
template<typename R, typename ...A>