0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-26 00:32:35 +01:00

fixup! ircd::fmt: Support string_view; updates to the format string system.

This commit is contained in:
Jason Volk 2017-03-17 20:27:33 -07:00
parent 6a8393ec02
commit 274e2ec717

View file

@ -698,7 +698,7 @@ fmt::generate_integer(char *&out,
const spec &s,
const integer &i)
{
using karma::int_;
using karma::long_;
using karma::maxwidth;
struct generator
@ -706,7 +706,7 @@ fmt::generate_integer(char *&out,
{
karma::rule<char *, integer()> rule
{
int_
long_
};
generator(): rfc1459::gen::grammar<char *, integer()>{rule} {}