Avoid clang warning by removing the extra parentheses

This commit is contained in:
Peter Dimov
2018-01-29 19:18:05 +02:00
parent e3976fb3d3
commit c6a977c99f

View File

@@ -643,7 +643,7 @@ namespace
{
return fs::file_status(fs::file_not_found, fs::no_perms);
}
else if ((errval == ERROR_SHARING_VIOLATION))
else if (errval == ERROR_SHARING_VIOLATION)
{
return fs::file_status(fs::type_unknown);
}