diff --git a/include/fmt/format.h b/include/fmt/format.h index 96774875..4ab5e675 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -3560,13 +3560,6 @@ inline std::basic_string internal::vformat( return fmt::to_string(buffer); } -template -inline typename std::enable_if::value>::type - print(String format_str, const Args &... args) { - internal::check_format_string(format_str); - return vprint(format_str.data(), make_format_args(args...)); -} - /** Returns the number of characters in the output of ``format(format_str, args...)``.