summaryrefslogtreecommitdiff
path: root/src/lib/verify_dcp_job.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/verify_dcp_job.h')
-rw-r--r--src/lib/verify_dcp_job.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/verify_dcp_job.h b/src/lib/verify_dcp_job.h
index ab33b4f55..3372cd602 100644
--- a/src/lib/verify_dcp_job.h
+++ b/src/lib/verify_dcp_job.h
@@ -33,7 +33,7 @@ public:
std::string json_name () const;
void run ();
- std::list<dcp::VerificationNote> notes () const {
+ std::vector<dcp::VerificationNote> notes () const {
return _notes;
}
@@ -41,5 +41,5 @@ private:
void update_stage (std::string s, boost::optional<boost::filesystem::path> path);
std::vector<boost::filesystem::path> _directories;
- std::list<dcp::VerificationNote> _notes;
+ std::vector<dcp::VerificationNote> _notes;
};