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/verify_dcp_job.h | |
| parent | d24251b2e0d82236f93ee5415b72849dee2a0ac8 (diff) | |
Bump libdcp for better verification, and make API adjustments.
Diffstat (limited to 'src/lib/verify_dcp_job.h')
| -rw-r--r-- | src/lib/verify_dcp_job.h | 4 |
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; }; |
