0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-11 14:38:57 +02:00

ircd: Fix system exception category condition error.

This commit is contained in:
Jason Volk 2019-06-23 01:15:48 -06:00
parent 53ea7b8658
commit b7186313e8

View file

@ -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();
}