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:
parent
6a8393ec02
commit
274e2ec717
1 changed files with 11 additions and 11 deletions
|
@ -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} {}
|
||||
|
|
Loading…
Reference in a new issue