Ticket #6809: libs_filesystem_src_operations.cpp.patch

File libs_filesystem_src_operations.cpp.patch, 774 bytes (added by Sergey Kazakov <sergeyyk@…>, 11 years ago)
  • libs/filesystem/src/operations.cpp

     
    223223#   define BOOST_DELETE_FILE(P)(::DeleteFileW(P)!= 0)
    224224#   define BOOST_COPY_DIRECTORY(F,T)(::CreateDirectoryExW(F, T, 0)!= 0)
    225225#   define BOOST_COPY_FILE(F,T,FailIfExistsBool)(::CopyFileW(F, T, FailIfExistsBool)!= 0)
    226 #   define BOOST_MOVE_FILE(OLD,NEW)(::MoveFileExW(OLD, NEW, MOVEFILE_REPLACE_EXISTING)!= 0)
     226#   define BOOST_MOVE_FILE(OLD,NEW)(::MoveFileExW(OLD, NEW, MOVEFILE_REPLACE_EXISTING|MOVEFILE_COPY_ALLOWED)!= 0)
    227227#   define BOOST_RESIZE_FILE(P,SZ)(resize_file_api(P, SZ)!= 0)
    228228#   define BOOST_READ_SYMLINK(P,T)
    229229