diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-12-15 00:09:57 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-12-22 01:21:00 +0100 |
| commit | 15f57fb7a60b8c88e11ec611c8fd3b1080aae8c8 (patch) | |
| tree | 6410f69d36abc51fa3aacf1251ae572bbde32cf7 /tools | |
| parent | 67cba4ee8eba281297af23b3c55a5f8d30fb8363 (diff) | |
More adventures in the art of enum namespacing.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/common.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/common.cc b/tools/common.cc index 7ae3dae0..91dba995 100644 --- a/tools/common.cc +++ b/tools/common.cc @@ -46,7 +46,7 @@ dcp::filter_notes (list<dcp::VerificationNote>& notes, bool ignore_missing_asset list<dcp::VerificationNote>::iterator tmp = i; ++tmp; - if (ignore_missing_assets && i->code() == dcp::VerificationNote::Code::MISSING_ASSET) { + if (ignore_missing_assets && i->code() == dcp::VerificationNote::MISSING_ASSET) { notes.erase (i); } |
