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:
parent
5335371b1a
commit
5a8cc4e8cd
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue