Ticket #11914: copy_exceptions.patch

File copy_exceptions.patch, 529 bytes (added by sudhanshu.gupta05@…, 4 years ago)

Patch contains the fix for the issue.

Line 
1==== //3rdparty/tmw/boost/libs/filesystem/src/operations.cpp#7 - /mathworks/devel/sandbox/sudhansg/3p-boostRelease/3p/sources/boost/libs/filesystem/src/operations.cpp ====
2985c985
3< copy_symlink(from, to, *ec);
4---
5> detail::copy_symlink(from, to, ec);
6989c989
7< copy_directory(from, to, *ec);
8---
9> detail::copy_directory(from, to, ec);
10993c993
11< copy_file(from, to, fs::copy_option::fail_if_exists, *ec);
12---
13> detail::copy_file(from, to, fs::detail::copy_option::fail_if_exists, ec);