mirror of
https://github.com/matrix-construct/construct
synced 2024-12-25 06:53:58 +01:00
ircd:Ⓜ️:event::fetch: Improve codegen w/ dtor linkage.
This commit is contained in:
parent
5eebfbbb90
commit
f931912f3e
2 changed files with 7 additions and 0 deletions
|
@ -69,6 +69,7 @@ struct ircd::m::event::fetch
|
||||||
fetch(const id &, const opts & = default_opts);
|
fetch(const id &, const opts & = default_opts);
|
||||||
fetch(const idx &, const opts & = default_opts);
|
fetch(const idx &, const opts & = default_opts);
|
||||||
fetch(const opts & = default_opts);
|
fetch(const opts & = default_opts);
|
||||||
|
~fetch() noexcept;
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Event Fetch Options.
|
/// Event Fetch Options.
|
||||||
|
|
|
@ -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")]]
|
[[gnu::visibility("hidden")]]
|
||||||
bool
|
bool
|
||||||
ircd::m::event::fetch::assign_from_json(const string_view &key)
|
ircd::m::event::fetch::assign_from_json(const string_view &key)
|
||||||
|
|
Loading…
Reference in a new issue