0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-04-07 18:33:47 +02:00

ircd::net: Terminate rather than throwing into noexcept.

This commit is contained in:
Jason Volk 2019-09-14 18:30:25 -07:00
parent 4c7f53fda9
commit a322ff762d

View file

@ -2076,7 +2076,7 @@ catch(...)
"Acceptor ALPN callback unhandled." "Acceptor ALPN callback unhandled."
}; };
throw; ircd::terminate();
} }
bool bool
@ -2174,7 +2174,7 @@ catch(...)
"Acceptor SNI callback unhandled." "Acceptor SNI callback unhandled."
}; };
throw; ircd::terminate();
} }
void void