Adapt for libdcp use of enum class.
[dcpomatic.git] / src / lib / verify_dcp_job.cc
index bbcce720893ccd794909e72f9249819fb9e4e234..bd5634669985116de4b74ee9aa6ca9609973bcfe 100644 (file)
@@ -72,7 +72,7 @@ VerifyDCPJob::run ()
 
        bool failed = false;
        for (auto i: _notes) {
-               if (i.type() == dcp::VerificationNote::VERIFY_ERROR) {
+               if (i.type() == dcp::VerificationNote::Type::ERROR) {
                        failed = true;
                }
        }