0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-30 15:58:20 +02:00

ircd::fs: Use system_error factory.

This commit is contained in:
Jason Volk 2019-07-20 20:19:40 -07:00
parent bcec03ce1a
commit 70ec2a37c7

View file

@ -2326,7 +2326,7 @@ ircd::fs::error::buf;
ircd::fs::error::error(const boost::filesystem::filesystem_error &e)
:std::system_error
{
make_error_code(e), e.what()
make_system_error(e)
}
{
}