Suppress warning

This commit is contained in:
Dimitrij Mijoski 2022-07-23 12:22:33 +02:00
parent 5fd371ebe1
commit 72737d008d

View File

@ -100,8 +100,8 @@ inline bool write_ostream_unicode(std::ostream& os, fmt::string_view data) {
return false; return false;
if (c_file) return write_console(c_file, data); if (c_file) return write_console(c_file, data);
#else #else
(void)os; // suppress warning ignore_unused(os);
(void)data; ignore_unused(data);
#endif #endif
return false; return false;
} }