diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-03-04 23:24:59 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-03-05 23:52:14 +0100 |
| commit | ab766096598188759d29829043bf28e63379b730 (patch) | |
| tree | 1fb8fb9eb22c275834db2671395e7b3558e7aac4 /src/lib/content.cc | |
| parent | 2719964f89431a0598ef617326158309afe5ba43 (diff) | |
Replace Content::paths_valid() with a free utility function.
Diffstat (limited to 'src/lib/content.cc')
| -rw-r--r-- | src/lib/content.cc | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/lib/content.cc b/src/lib/content.cc index c5f82a375..60073f860 100644 --- a/src/lib/content.cc +++ b/src/lib/content.cc @@ -337,19 +337,6 @@ Content::identifier() const } -bool -Content::paths_valid() const -{ - for (auto i: _paths) { - if (!dcp::filesystem::exists(i)) { - return false; - } - } - - return true; -} - - void Content::set_paths(vector<boost::filesystem::path> paths) { |
