diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-21 01:57:06 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-21 01:57:06 +0100 |
| commit | 76e3325a16cdf6d7220a61e2b5cfdb9c804cc32c (patch) | |
| tree | 8c1b5e5dc2cec265469a0d8018b6d7396b089432 /tools/dcpkdm.cc | |
| parent | 6c3db78c3d20ef064fa2a0ef38e65ca1ae69adb3 (diff) | |
Use enum class for the things in types.h
Diffstat (limited to 'tools/dcpkdm.cc')
| -rw-r--r-- | tools/dcpkdm.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dcpkdm.cc b/tools/dcpkdm.cc index 7bf06e19..60fcf902 100644 --- a/tools/dcpkdm.cc +++ b/tools/dcpkdm.cc @@ -132,7 +132,7 @@ try BOOST_FOREACH (dcp::DecryptedKDMKey i, dec_kdm.keys ()) { cout << "\n"; cout << "\tID: " << i.id() << "\n"; - cout << "\tStandard: " << (i.standard() == dcp::SMPTE ? "SMPTE" : "Interop") << "\n"; + cout << "\tStandard: " << (i.standard() == dcp::Standard::SMPTE ? "SMPTE" : "Interop") << "\n"; cout << "\tCPL ID: " << i.cpl_id() << "\n"; if (i.type()) { cout << "\tType: " << i.type().get() << "\n"; |
