From 8c54e5bfa48ca303af8355835c1fad8716a1bca7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20R=C3=BCth?= Date: Tue, 2 Jan 2024 23:53:50 -0600 Subject: [PATCH] Fix lint --- include/fmt/format-inl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/format-inl.h b/include/fmt/format-inl.h index daeae5b1..efac5d1f 100644 --- a/include/fmt/format-inl.h +++ b/include/fmt/format-inl.h @@ -1434,7 +1434,7 @@ FMT_FUNC auto vformat(string_view fmt, format_args args) -> std::string { namespace detail { #if !defined(_WIN32) || defined(FMT_WINDOWS_NO_WCHAR) FMT_FUNC auto write_console(int, string_view) -> bool { return false; } -FMT_FUNC auto write_console(std::FILE* f, string_view text) -> bool { return false; } +FMT_FUNC auto write_console(std::FILE*, string_view) -> bool { return false; } #else using dword = conditional_t; extern "C" __declspec(dllimport) int __stdcall WriteConsoleW( //