Opened 12 years ago
Closed 12 years ago
#4709 closed Bugs (fixed)
mistype in filesystem/v3/src/operations.cpp:662
Reported by: | Owned by: | Beman Dawes | |
---|---|---|---|
Milestone: | To Be Determined | Component: | filesystem |
Version: | Boost 1.44.0 | Severity: | Problem |
Keywords: | copy filesystem3 linux | Cc: |
Description
line 659: void copy(const path& from, const path& to, system::error_code* ec)
line 661: file_status s(symlink_status(from, *ec));
line 662: if (ec != 0 && ec)return;
as a result this method always exits at line 662, regardless whether or not 'from' points to the existing file or not.
Note:
See TracTickets
for help on using tickets.
Fixed by changeset 65765.
Thanks,
--Beman