We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fccfb8 commit fc17e82Copy full SHA for fc17e82
include/fmt/os.h
@@ -161,14 +161,6 @@ inline auto system_category() noexcept -> const std::error_category& {
161
}
162
#endif // _WIN32
163
164
-// std::system is not available on some platforms such as iOS (#2248).
165
-#ifdef __OSX__
166
-template <typename S, typename... Args, typename Char = char_t<S>>
167
-void say(const S& fmt, Args&&... args) {
168
- std::system(format("say \"{}\"", format(fmt, args...)).c_str());
169
-}
170
-#endif
171
-
172
// A buffered file.
173
class buffered_file {
174
private:
0 commit comments