mirror of
https://github.com/matrix-construct/construct
synced 2024-12-25 23:14:13 +01:00
ircd::server: deinline peer::err ctor.
This commit is contained in:
parent
7b4b6c479c
commit
100325b5a8
2 changed files with 17 additions and 4 deletions
|
@ -120,8 +120,6 @@ struct ircd::server::peer::err
|
|||
std::exception_ptr eptr;
|
||||
system_point etime;
|
||||
|
||||
err(std::exception_ptr eptr)
|
||||
:eptr{std::move(eptr)}
|
||||
,etime{now<system_point>()}
|
||||
{}
|
||||
err(std::exception_ptr);
|
||||
~err() noexcept;
|
||||
};
|
||||
|
|
|
@ -1167,6 +1167,21 @@ const
|
|||
});
|
||||
}
|
||||
|
||||
//
|
||||
// peer::err
|
||||
//
|
||||
|
||||
ircd::server::peer::err::err(std::exception_ptr eptr)
|
||||
:eptr{std::move(eptr)}
|
||||
,etime{now<system_point>()}
|
||||
{
|
||||
}
|
||||
|
||||
ircd::server::peer::err::~err()
|
||||
noexcept
|
||||
{
|
||||
}
|
||||
|
||||
//
|
||||
// link
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue