Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:aschnell:boost
pulseeffects
01-fix-depricated-boost-filesystem-copy_option....
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 01-fix-depricated-boost-filesystem-copy_option.patch of Package pulseeffects
diff --git a/src/convolver_ui.cpp b/src/convolver_ui.cpp index fba3d6bfd..d40f3afff 100644 --- a/src/convolver_ui.cpp +++ b/src/convolver_ui.cpp @@ -186,7 +186,7 @@ void ConvolverUi::import_irs_file(const std::string& file_path) { out_path.replace_extension(".irs"); - boost::filesystem::copy_file(p, out_path, boost::filesystem::copy_option::overwrite_if_exists); + boost::filesystem::copy_file(p, out_path, boost::filesystem::copy_options::overwrite_existing); util::debug(log_tag + "imported irs file to: " + out_path.string()); } else { diff --git a/src/presets_manager.cpp b/src/presets_manager.cpp index 6926e3d9d..57c333aaf 100644 --- a/src/presets_manager.cpp +++ b/src/presets_manager.cpp @@ -472,7 +472,7 @@ void PresetsManager::import(PresetType preset_type, const std::string& file_path out_path = user_dir / p.filename(); - boost::filesystem::copy_file(p, out_path, boost::filesystem::copy_option::overwrite_if_exists); + boost::filesystem::copy_file(p, out_path, boost::filesystem::copy_options::overwrite_existing); util::debug(log_tag + "imported preset to: " + out_path.string()); }
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor