diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-10-22 14:54:09 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-10-22 21:15:16 +0200 |
| commit | 9fe5ff46bf292142d0172485ff8daf420ccdd585 (patch) | |
| tree | 7d57c69485dd08b7b485d08e7461f3ce172518d0 | |
| parent | 82c92387d303b912184519f485dd1c8b658223f9 (diff) | |
Remove unused method.
| -rw-r--r-- | src/tools/dcpomatic_verifier.cc | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/tools/dcpomatic_verifier.cc b/src/tools/dcpomatic_verifier.cc index 8a509529b..84f8c4606 100644 --- a/src/tools/dcpomatic_verifier.cc +++ b/src/tools/dcpomatic_verifier.cc @@ -86,18 +86,6 @@ public: { /* Not used */ } - -private: - void search(vector<boost::filesystem::path>& dcp, boost::filesystem::path path) const - { - if (dcp::filesystem::exists(path / "ASSETMAP") || dcp::filesystem::exists(path / "ASSETMAP.xml")) { - dcp.push_back(path); - } else if (boost::filesystem::is_directory(path)) { - for (auto i: boost::filesystem::directory_iterator(path)) { - search(dcp, i.path()); - } - } - }; }; |
