From fc17e825d9b53cb7920d36abfa568d59cde2dd7b Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 12 Nov 2025 11:06:01 -0800 Subject: [PATCH] Remove the broken fmt::say function --- include/fmt/os.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/include/fmt/os.h b/include/fmt/os.h index 94d730de..3fbd6905 100644 --- a/include/fmt/os.h +++ b/include/fmt/os.h @@ -161,14 +161,6 @@ inline auto system_category() noexcept -> const std::error_category& { } #endif // _WIN32 -// std::system is not available on some platforms such as iOS (#2248). -#ifdef __OSX__ -template > -void say(const S& fmt, Args&&... args) { - std::system(format("say \"{}\"", format(fmt, args...)).c_str()); -} -#endif - // A buffered file. class buffered_file { private: