diff --git a/include/fmt/format.h b/include/fmt/format.h index 721520c4..60dcc2ae 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -1236,21 +1236,22 @@ void arg_map::init(const basic_format_args &args) { } } -template +template class arg_formatter_base { public: - typedef basic_format_specs format_specs; + using char_type = typename Range::value_type; + using format_specs = basic_format_specs; private: - using writer_type = basic_writer>; + using writer_type = basic_writer; writer_type writer_; format_specs &specs_; FMT_DISALLOW_COPY_AND_ASSIGN(arg_formatter_base); - void write_char(Char value) { + void write_char(char_type value) { writer_.write_padded(1, specs_, [value](auto &it) { - *it++ = internal::char_traits::cast(value); + *it++ = internal::char_traits::cast(value); }); } @@ -1268,16 +1269,13 @@ class arg_formatter_base { writer_.write_str(string_view(value ? "true" : "false"), specs_); } - void write(const Char *value) { - writer_.write_str(basic_string_view( - value, value != 0 ? std::char_traits::length(value) : 0), specs_); + void write(const char_type *value) { + auto length = value != 0 ? std::char_traits::length(value) : 0; + writer_.write_str(basic_string_view(value, length), specs_); } public: - typedef Char char_type; - - arg_formatter_base(basic_buffer &b, format_specs &s) - : writer_(b), specs_(s) {} + arg_formatter_base(Range &r, format_specs &s): writer_(r), specs_(s) {} void operator()(monostate) { FMT_ASSERT(false, "invalid argument type"); @@ -1297,12 +1295,13 @@ class arg_formatter_base { write(value); } - void operator()(Char value) { + void operator()(char_type value) { struct spec_handler : internal::error_handler { arg_formatter_base &formatter; - Char value; + char_type value; - spec_handler(arg_formatter_base& f, Char val): formatter(f), value(val) {} + spec_handler(arg_formatter_base& f, char_type val) + : formatter(f), value(val) {} void on_int() { formatter.writer_.write_int(value, formatter.specs_); } void on_char() { formatter.write_char(value); } @@ -1310,12 +1309,12 @@ class arg_formatter_base { internal::handle_char_specs(specs_, spec_handler(*this, value)); } - void operator()(const Char *value) { + void operator()(const char_type *value) { struct spec_handler : internal::error_handler { arg_formatter_base &formatter; - const Char *value; + const char_type *value; - spec_handler(arg_formatter_base &f, const Char *val) + spec_handler(arg_formatter_base &f, const char_type *val) : formatter(f), value(val) {} void on_string() { formatter.write(value); } @@ -1325,7 +1324,7 @@ class arg_formatter_base { specs_.type_, spec_handler(*this, value)); } - void operator()(basic_string_view value) { + void operator()(basic_string_view value) { internal::check_string_type_spec(specs_.type_, internal::error_handler()); writer_.write_str(value, specs_); } @@ -1989,17 +1988,16 @@ void handle_dynamic_spec( /** The default argument formatter. */ template -class arg_formatter: - public internal::arg_formatter_base { +class arg_formatter: public internal::arg_formatter_base { private: basic_context &ctx_; using char_type = typename Range::value_type; - typedef internal::arg_formatter_base Base; + using base = internal::arg_formatter_base; public: using range = Range; - using format_specs = typename Base::format_specs; + using format_specs = typename base::format_specs; /** \rst @@ -2011,9 +2009,9 @@ class arg_formatter: */ arg_formatter(basic_buffer &buffer, basic_context &ctx, format_specs &spec) - : internal::arg_formatter_base(buffer, spec), ctx_(ctx) {} + : base(buffer, spec), ctx_(ctx) {} - using internal::arg_formatter_base::operator(); + using base::operator(); /** Formats an argument of a custom (user-defined) type. */ void operator()(typename basic_arg>::handle handle) { diff --git a/include/fmt/printf.h b/include/fmt/printf.h index 64f79654..d999f304 100644 --- a/include/fmt/printf.h +++ b/include/fmt/printf.h @@ -211,7 +211,7 @@ class printf_context; */ template class printf_arg_formatter : - public internal::arg_formatter_base { + public internal::arg_formatter_base { private: printf_context& context_; @@ -221,10 +221,10 @@ class printf_arg_formatter : } using char_type = typename Range::value_type; - using base = internal::arg_formatter_base; + using base = internal::arg_formatter_base; public: - typedef typename base::format_specs format_specs; + using format_specs = typename base::format_specs; /** \rst @@ -235,7 +235,7 @@ class printf_arg_formatter : */ printf_arg_formatter(basic_buffer &buffer, format_specs &spec, printf_context &ctx) - : internal::arg_formatter_base(buffer, spec), context_(ctx) {} + : base(buffer, spec), context_(ctx) {} using base::operator(); diff --git a/test/format-test.cc b/test/format-test.cc index 2a9bb7cc..3321ed59 100644 --- a/test/format-test.cc +++ b/test/format-test.cc @@ -1482,16 +1482,17 @@ TEST(FormatTest, Enum) { EXPECT_EQ("0", fmt::format("{}", A)); } -class mock_arg_formatter : public fmt::internal::arg_formatter_base { +class mock_arg_formatter: + public fmt::internal::arg_formatter_base { private: MOCK_METHOD1(call, void (int value)); public: - using base = fmt::internal::arg_formatter_base; + using base = fmt::internal::arg_formatter_base; using range = fmt::buffer; mock_arg_formatter(fmt::buffer &b, fmt::context &, fmt::format_specs &s) - : fmt::internal::arg_formatter_base(b, s) { + : base(b, s) { EXPECT_CALL(*this, call(42)); }