0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-02 08:48:18 +02:00

ircd::net: Catch std::system_error rather than boost here.

This commit is contained in:
Jason Volk 2018-11-14 18:57:42 -08:00
parent 76913eb6ab
commit ae1c6cc680

View file

@ -1291,7 +1291,7 @@ catch(const ctx::interrupted &e)
joining.notify_all();
}
catch(const boost::system::system_error &e)
catch(const std::system_error &e)
{
log::derror
{
@ -1387,7 +1387,7 @@ catch(const ctx::interrupted &e)
joining.notify_all();
}
catch(const boost::system::system_error &e)
catch(const std::system_error &e)
{
log::derror
{