diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-22 01:39:22 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-22 01:39:22 +0100 |
| commit | 5fbcd3a8dc711c6c42efabbac72ab0408f504ea2 (patch) | |
| tree | dfc84a000b2e2c67b6c73c2b8809b5da3137ecc4 /tools/dcpverify.cc | |
| parent | bebe2f996176113a527bf2492fd179420493d0ff (diff) | |
Assorted c++11 cleanups.
Diffstat (limited to 'tools/dcpverify.cc')
| -rw-r--r-- | tools/dcpverify.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dcpverify.cc b/tools/dcpverify.cc index b3ac5f06..2ba4f5c8 100644 --- a/tools/dcpverify.cc +++ b/tools/dcpverify.cc @@ -142,7 +142,7 @@ main (int argc, char* argv[]) dcp::filter_notes (notes, ignore_missing_assets); bool failed = false; - BOOST_FOREACH (dcp::VerificationNote i, notes) { + for (auto i: notes) { if (ignore_bv21_smpte && i.code() == dcp::VerificationNote::Code::INVALID_STANDARD) { continue; } |
