diff --git a/include/fmt/format.h b/include/fmt/format.h index 2b710279..ae591704 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -4150,9 +4150,9 @@ operator"" _format(const wchar_t *s, std::size_t n) { return {{s, n}}; } \endrst */ inline internal::udl_arg -operator"" _a(const char *s, std::size_t n) { return {s}; } +operator"" _a(const char *s, std::size_t) { return {s}; } inline internal::udl_arg -operator"" _a(const wchar_t *s, std::size_t n) { return {s}; } +operator"" _a(const wchar_t *s, std::size_t) { return {s}; } } // inline namespace literals } // namespace fmt #endif // FMT_USE_USER_DEFINED_LITERALS