Update changelog, readme and improve compat

This commit is contained in:
Victor Zverovich
2018-09-12 12:44:04 -07:00
parent 6146248cf4
commit fbca830dd1
3 changed files with 43 additions and 5 deletions

View File

@@ -2365,6 +2365,10 @@ class arg_formatter:
explicit arg_formatter(context_type &ctx, format_specs *spec = {})
: base(Range(ctx.out()), spec), ctx_(ctx) {}
// Deprecated.
arg_formatter(context_type &ctx, format_specs &spec)
: base(Range(ctx.out()), &spec), ctx_(ctx) {}
using base::operator();
/** Formats an argument of a user-defined type. */