Update docs

This commit is contained in:
Victor Zverovich 2018-10-02 06:21:19 -07:00
parent 63a87beba4
commit 49b4c1e9db

View File

@ -248,7 +248,8 @@ custom argument formatter class::
// with the ``x`` format specifier. // with the ``x`` format specifier.
class custom_arg_formatter : public arg_formatter { class custom_arg_formatter : public arg_formatter {
public: public:
custom_arg_formatter(fmt::format_context &ctx, fmt::format_specs &spec) custom_arg_formatter(fmt::format_context &ctx,
fmt::format_specs *spec = nullptr)
: arg_formatter(ctx, spec) {} : arg_formatter(ctx, spec) {}
using arg_formatter::operator(); using arg_formatter::operator();