mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 02:02:38 +01:00
ircd::net: Terminate rather than throwing into noexcept.
This commit is contained in:
parent
4c7f53fda9
commit
a322ff762d
1 changed files with 2 additions and 2 deletions
|
@ -2076,7 +2076,7 @@ catch(...)
|
|||
"Acceptor ALPN callback unhandled."
|
||||
};
|
||||
|
||||
throw;
|
||||
ircd::terminate();
|
||||
}
|
||||
|
||||
bool
|
||||
|
@ -2174,7 +2174,7 @@ catch(...)
|
|||
"Acceptor SNI callback unhandled."
|
||||
};
|
||||
|
||||
throw;
|
||||
ircd::terminate();
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue