diff --git a/src/lib/fmt/SystemError.hxx b/src/lib/fmt/SystemError.hxx index 6cab0a387..4fa66691d 100644 --- a/src/lib/fmt/SystemError.hxx +++ b/src/lib/fmt/SystemError.hxx @@ -36,6 +36,8 @@ #include #endif +#include + [[nodiscard]] [[gnu::pure]] std::system_error VFmtSystemError(std::error_code code, @@ -92,6 +94,7 @@ FmtLastError(const S &format_str, Args&&... args) noexcept #endif // _WIN32 template +requires(std::is_convertible_v) [[nodiscard]] [[gnu::pure]] std::system_error FmtErrno(int code, const S &format_str, Args&&... args) noexcept @@ -101,6 +104,7 @@ FmtErrno(int code, const S &format_str, Args&&... args) noexcept } template +requires(std::is_convertible_v) [[nodiscard]] [[gnu::pure]] std::system_error FmtErrno(const S &format_str, Args&&... args) noexcept @@ -109,6 +113,7 @@ FmtErrno(const S &format_str, Args&&... args) noexcept } template +requires(std::is_convertible_v) [[nodiscard]] [[gnu::pure]] std::system_error FmtFileNotFound(const S &format_str, Args&&... args) noexcept