diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-20 23:42:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-20 23:42:28 +0100 |
| commit | cb6729aa79b555b219974207fbe2ff0510f9d3ea (patch) | |
| tree | 973024e5dbf8bd8d873850909665e6229138ef57 /src/lib/types.cc | |
| parent | d24251b2e0d82236f93ee5415b72849dee2a0ac8 (diff) | |
Bump libdcp for better verification, and make API adjustments.
Diffstat (limited to 'src/lib/types.cc')
| -rw-r--r-- | src/lib/types.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/types.cc b/src/lib/types.cc index 68d97b8ff..9aba915e8 100644 --- a/src/lib/types.cc +++ b/src/lib/types.cc @@ -39,6 +39,7 @@ using std::min; using std::string; using std::list; using std::shared_ptr; +using std::vector; using dcp::raw_convert; bool operator== (Crop const & a, Crop const & b) @@ -197,7 +198,7 @@ CPLSummary::CPLSummary (boost::filesystem::path p) { dcp::DCP dcp (p); - list<dcp::VerificationNote> notes; + vector<dcp::VerificationNote> notes; dcp.read (¬es); for (auto i: notes) { if (i.code() != dcp::VerificationNote::EXTERNAL_ASSET) { |
