From 4bb76ef0c7bcddc4aeb7d80e59528aee731b200d Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 13 Oct 2018 10:23:38 -0700 Subject: [PATCH] Remove redundant definition of print --- include/fmt/format.h | 7 ------- 1 file changed, 7 deletions(-) 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...)``.