mirror of
https://github.com/matrix-construct/construct
synced 2024-12-26 15:33:54 +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;
|
std::exception_ptr eptr;
|
||||||
system_point etime;
|
system_point etime;
|
||||||
|
|
||||||
err(std::exception_ptr eptr)
|
err(std::exception_ptr);
|
||||||
:eptr{std::move(eptr)}
|
~err() noexcept;
|
||||||
,etime{now<system_point>()}
|
|
||||||
{}
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -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
|
// link
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue