0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-27 19:28:52 +02:00

ircd::json: Use rule::alias() for property name string.

This commit is contained in:
Jason Volk 2020-04-18 00:08:08 -07:00
parent 17e62957d9
commit 27146c471c

View file

@ -142,7 +142,7 @@ ircd::json::input
// container
const rule<string_view> name
{
string
string.alias()
,"name"
};
@ -300,7 +300,7 @@ ircd::json::output
rule<string_view> name
{
string
string.alias()
,"name"
};