-
Notifications
You must be signed in to change notification settings - Fork 15
Closed
Description
15.3 [fs.op.copy] paragraph 16 says:
then
copy_symlink(from, to, options).
But there is no overload of copy_symlink that takes a copy_options, it should be copy_symlink(from, to).
Paragraph 26 says
as if by
for (directory_entry& x : directory_iterator(from))
but the result of dereferencing a directory_iterator is const, it should be:
as if by
for (const directory_entry& x : directory_iterator(from))
Metadata
Metadata
Assignees
Labels
No labels