Skip to content

Errors in [fs.op.copy] #12

@jwakely

Description

@jwakely

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions