Use enum class for VideoRange.
[dcpomatic.git] / src / lib / verify_dcp_job.h
index ab33b4f559dfd0b180ec19644e3ff3a95ff11c57..3372cd6023b57437f0d308789c1583d1133a1404 100644 (file)
@@ -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;
 };