summaryrefslogtreecommitdiff
path: root/src/lib/types.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-20 23:42:28 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-20 23:42:28 +0100
commitcb6729aa79b555b219974207fbe2ff0510f9d3ea (patch)
tree973024e5dbf8bd8d873850909665e6229138ef57 /src/lib/types.cc
parentd24251b2e0d82236f93ee5415b72849dee2a0ac8 (diff)
Bump libdcp for better verification, and make API adjustments.
Diffstat (limited to 'src/lib/types.cc')
-rw-r--r--src/lib/types.cc3
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 (&notes);
for (auto i: notes) {
if (i.code() != dcp::VerificationNote::EXTERNAL_ASSET) {