summaryrefslogtreecommitdiff
path: root/src/lib/map_cli.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-02-08 21:10:49 +0100
committerCarl Hetherington <cth@carlh.net>2026-02-08 21:10:49 +0100
commit9401afc97abeaf4b63c867393e5047e385002f8a (patch)
treecbc3ed276e765a781144f65a0abf817e7f6c1528 /src/lib/map_cli.cc
parentae5d6b702af178452f84b85dfa13b62be577e3f5 (diff)
Fix a few unwrapped boost::filesystem calls that had crept in.
Diffstat (limited to 'src/lib/map_cli.cc')
-rw-r--r--src/lib/map_cli.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/map_cli.cc b/src/lib/map_cli.cc
index 43023a440..64ea9dbca 100644
--- a/src/lib/map_cli.cc
+++ b/src/lib/map_cli.cc
@@ -180,7 +180,7 @@ map_cli(int argc, char* argv[], std::function<void (string)> out)
/* Find all the CPLs */
vector<shared_ptr<dcp::CPL>> cpls;
for (auto filename_or_id: cpl_filenames_or_ids) {
- if (boost::filesystem::exists(filename_or_id)) {
+ if (dcp::filesystem::exists(filename_or_id)) {
try {
auto cpl = make_shared<dcp::CPL>(filename_or_id);
cpl->resolve_refs(assets);