mirror of
https://github.com/boostorg/filesystem.git
synced 2026-02-28 05:12:25 +00:00
Avoid clang warning by removing the extra parentheses
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user