diff options
Diffstat (limited to 'src/lib/make_dcp_job.cc')
| -rw-r--r-- | src/lib/make_dcp_job.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/make_dcp_job.cc b/src/lib/make_dcp_job.cc index 5a16abc1e..e2c90a854 100644 --- a/src/lib/make_dcp_job.cc +++ b/src/lib/make_dcp_job.cc @@ -36,8 +36,8 @@ extern "C" { #include "imagemagick_decoder.h" #include "film.h" -using namespace std; -using namespace boost; +using std::string; +using boost::shared_ptr; /** @param f Film we are making the DCP for. * @param o Options. @@ -73,7 +73,7 @@ MakeDCPJob::run () string const dcp_path = _film->dir (_film->dcp_name()); /* Remove any old DCP */ - filesystem::remove_all (dcp_path); + boost::filesystem::remove_all (dcp_path); int frames = 0; switch (_film->content_type ()) { |
