0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-28 14:58:20 +02:00

ircd:Ⓜ️ Fix assignment.

This commit is contained in:
Jason Volk 2019-06-06 23:38:36 -07:00
parent f728906505
commit c2ec2bf3c2

View file

@ -4090,7 +4090,7 @@ const
get(std::nothrow, id, [&ret]
(const string_view &id, const json::object &val)
{
ret.assign(data(val), size(val));
ret = val;
});
return ret;