Merge pull request #8184 from sbraz/boost

Fix ‘fs::copy_option’ has not been declared with boost 1.74.0
This commit is contained in:
Alexander Aleksandrovič Klimov 2020-10-29 16:19:07 +01:00 committed by GitHub
commit b5b1ee715b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -725,7 +725,11 @@ void Utility::CopyFile(const String& source, const String& target)
{
namespace fs = boost::filesystem;
#if BOOST_VERSION >= 107400
fs::copy_file(fs::path(source.Begin(), source.End()), fs::path(target.Begin(), target.End()), fs::copy_options::overwrite_existing);
#else /* BOOST_VERSION */
fs::copy_file(fs::path(source.Begin(), source.End()), fs::path(target.Begin(), target.End()), fs::copy_option::overwrite_if_exists);
#endif /* BOOST_VERSION */
}
/*