From 5e23fff05248c3fd0a87392d82277b2b7ece8a7f Mon Sep 17 00:00:00 2001 From: Alex Martin Date: Sun, 25 Jun 2017 12:59:34 +0200 Subject: [PATCH] remove unnecessary method --- fmt/format.cc | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/fmt/format.cc b/fmt/format.cc index ef429d12..09d2ea9f 100644 --- a/fmt/format.cc +++ b/fmt/format.cc @@ -213,16 +213,6 @@ void report_error(FormatFunc func, int error_code, } } // namespace -namespace internal { - -// This method is used to preserve binary compatibility with fmt 3.0. -// It can be removed in 4.0. -FMT_FUNC void format_system_error( - Writer &out, int error_code, StringRef message) FMT_NOEXCEPT { - fmt::format_system_error(out, error_code, message); -} -} // namespace internal - FMT_FUNC void SystemError::init( int err_code, CStringRef format_str, ArgList args) { error_code_ = err_code;