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

ircd:Ⓜ️ Fix prototype for pretty prev.

This commit is contained in:
Jason Volk 2018-09-27 17:10:22 -07:00
parent 771ecaef7e
commit 4b142de177

View file

@ -100,7 +100,7 @@ std::ostream &
ircd::m::pretty(std::ostream &s,
const event::prev &prev)
{
using prototype = void (std::ostream &, const event &);
using prototype = void (std::ostream &, const event::prev &);
static mods::import<prototype> pretty
{
"m_event", "pretty__prev"