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/cross_linux.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/cross_linux.cc') diff --git a/src/lib/cross_linux.cc b/src/lib/cross_linux.cc index d9ab73706..96fa3b161 100644 --- a/src/lib/cross_linux.cc +++ b/src/lib/cross_linux.cc @@ -86,7 +86,7 @@ boost::filesystem::path resources_path () { auto installed = directory_containing_executable().parent_path() / "share" / "dcpomatic2"; - if (boost::filesystem::exists(installed)) { + if (dcp::filesystem::exists(installed)) { return installed; } -- cgit v1.2.3