probably typo

...at least MSVC unable to compile this
This commit is contained in:
volth 2018-12-13 02:45:50 +00:00 committed by GitHub
parent 800cd55ab7
commit 21d494da83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -202,7 +202,7 @@ bool isInDir(const Path & path, const Path & dir)
bool isDirOrInDir(const Path & path, const Path & dir)
{
return path == dir or isInDir(path, dir);
return path == dir || isInDir(path, dir);
}