ircd:Ⓜ️:event::fetch: Improve codegen w/ dtor linkage.

This commit is contained in:
Jason Volk 2022-08-18 15:01:38 -07:00
parent 5eebfbbb90
commit f931912f3e
2 changed files with 7 additions and 0 deletions

View File

@ -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.

View File

@ -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)