0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-26 07:23:53 +01:00

ircd::fs: Fix error.

This commit is contained in:
Jason Volk 2017-10-03 04:02:39 -07:00
parent 5335371b1a
commit 5a8cc4e8cd

View file

@ -211,7 +211,7 @@ bool
ircd::fs::exists(const std::string &path)
try
{
return fs::exists(path);
return boost::filesystem::exists(path);
}
catch(const fs::filesystem_error &e)
{