diff --git a/include/fmt/format.h b/include/fmt/format.h index f74f53e9..ed87ea3d 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -2953,7 +2953,7 @@ struct formatter \ struct formatter : formatter { \ template \ - auto format(const Type& val, FormatContext& ctx) -> decltype(ctx.out()) { \ + auto format(Type const& val, FormatContext& ctx) -> decltype(ctx.out()) { \ return formatter::format(val, ctx); \ } \ }