0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-10 14:08:56 +02:00

ircd::fmt: Relax string specifier grammar from printable to non-control.

This commit is contained in:
Jason Volk 2020-10-20 21:46:24 -07:00
parent 51fdf2bfdf
commit e923054e85

View file

@ -1175,7 +1175,7 @@ const
{
karma::rule<char *, string_view> string
{
*(karma::print)
*(~ascii::cntrl)
,"string"
};