diff --git a/include/ircd/m/event/fetch.h b/include/ircd/m/event/fetch.h index 0991dcf42..395659afc 100644 --- a/include/ircd/m/event/fetch.h +++ b/include/ircd/m/event/fetch.h @@ -69,6 +69,7 @@ struct ircd::m::event::fetch fetch(const id &, const opts & = default_opts); fetch(const idx &, const opts & = default_opts); fetch(const opts & = default_opts); + ~fetch() noexcept; }; /// Event Fetch Options. diff --git a/matrix/event_fetch.cc b/matrix/event_fetch.cc index eb59d358e..21713dbb5 100644 --- a/matrix/event_fetch.cc +++ b/matrix/event_fetch.cc @@ -258,6 +258,12 @@ ircd::m::event::fetch::fetch(const opts &opts) { } +// array of db::cell::~cell() +ircd::m::event::fetch::~fetch() +noexcept +{ +} + [[gnu::visibility("hidden")]] bool ircd::m::event::fetch::assign_from_json(const string_view &key)