Simplify arg_mapper

This commit is contained in:
Victor Zverovich
2024-09-01 21:59:39 -07:00
parent a5f4d9820c
commit 4986b4c0ef
3 changed files with 24 additions and 26 deletions

View File

@@ -363,7 +363,7 @@ template <typename T, typename Char>
using has_formatter = std::is_constructible<formatter<T, Char>>;
template <typename Context> struct range_mapper {
using mapper = arg_mapper<Context>;
using mapper = arg_mapper<typename Context::char_type>;
using char_type = typename Context::char_type;
template <typename T,