diff options
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) { |
