From 9401afc97abeaf4b63c867393e5047e385002f8a Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 8 Feb 2026 21:10:49 +0100 Subject: Fix a few unwrapped boost::filesystem calls that had crept in. --- src/lib/map_cli.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/map_cli.cc') 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 out) /* Find all the CPLs */ vector> 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(filename_or_id); cpl->resolve_refs(assets); -- cgit v1.2.3