From 132ddd0e902e02ede899c2e26974f940ec0a593b Mon Sep 17 00:00:00 2001 From: WPMGPRoSToTeMa Date: Tue, 5 Dec 2017 16:27:21 +0300 Subject: [PATCH] Reverted changes in _a udl (2) --- include/fmt/format.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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