ircd:Ⓜ️:user::devices: Upgrade to polymorphic closure_bool.

This commit is contained in:
Jason Volk 2023-04-27 17:56:17 -07:00
parent 0b888b662a
commit 29f3ddfc3e
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ struct ircd::m::user::devices
struct send;
using closure = std::function<void (const event::idx &, const string_view &)>;
using closure_bool = std::function<bool (const event::idx &, const string_view &)>;
using closure_bool = util::function_bool<const event::idx &, const string_view &>;
m::user user;