You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, v3 and v4 perform path comparison element-wise, using iteration over path elements with iterators. This means that if one of the paths is missing root-name or root-directory, the algorithm may compare root-name or root-directory against a filename in the other path.
v4 should implement std::filesystem algorithm [fs.path.compare], which separately compares root-names, root-directories and then the elements of relative_path().
The text was updated successfully, but these errors were encountered:
Currently, v3 and v4 perform path comparison element-wise, using iteration over path elements with iterators. This means that if one of the paths is missing root-name or root-directory, the algorithm may compare root-name or root-directory against a filename in the other path.
v4 should implement std::filesystem algorithm [fs.path.compare], which separately compares root-names, root-directories and then the elements of
relative_path()
.The text was updated successfully, but these errors were encountered: