BOOST_FOREACH.
[dcpomatic.git] / src / lib / verify_dcp_job.cc
index 88e44c4f9be8bfe17761a42f7f4a52a967586717..bbcce720893ccd794909e72f9249819fb9e4e234 100644 (file)
@@ -71,7 +71,7 @@ VerifyDCPJob::run ()
        _notes = dcp::verify (_directories, bind (&VerifyDCPJob::update_stage, this, _1, _2), bind (&VerifyDCPJob::set_progress, this, _1, false), xsd_path());
 
        bool failed = false;
-       BOOST_FOREACH (dcp::VerificationNote i, _notes) {
+       for (auto i: _notes) {
                if (i.type() == dcp::VerificationNote::VERIFY_ERROR) {
                        failed = true;
                }