mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 15:00:51 +01:00
ircd: Fix system exception category condition error.
This commit is contained in:
parent
53ea7b8658
commit
b7186313e8
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ noexcept
|
|||
{
|
||||
return ec == std::system_category() ||
|
||||
ec == std::generic_category() ||
|
||||
ec == boost::system::system_category();
|
||||
ec == boost::system::system_category() ||
|
||||
ec == boost::system::generic_category();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue