diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-01-05 16:55:32 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-01-05 16:55:32 +0000 |
| commit | ca5f02dbf193fa5655c57cb25be96a3c9fd05157 (patch) | |
| tree | d5be6180bca64a0f4f8af9aaef2030080787fc24 /src/decrypted_kdm_key.cc | |
| parent | e3b5521ac40125c3dfd9f254856cf58ea1584f79 (diff) | |
Put everything into dcp::dc and change DCP -> Package.
Diffstat (limited to 'src/decrypted_kdm_key.cc')
| -rw-r--r-- | src/decrypted_kdm_key.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decrypted_kdm_key.cc b/src/decrypted_kdm_key.cc index aac12539..4d1f6f23 100644 --- a/src/decrypted_kdm_key.cc +++ b/src/decrypted_kdm_key.cc @@ -19,10 +19,10 @@ #include "decrypted_kdm_key.h" -using namespace dcp; +using namespace dcp::dc; bool -dcp::operator== (dcp::DecryptedKDMKey const & a, dcp::DecryptedKDMKey const & b) +dcp::dc::operator== (dcp::dc::DecryptedKDMKey const & a, dcp::dc::DecryptedKDMKey const & b) { return a.type() == b.type() && a.id() == b.id() && a.key() == b.key() && a.cpl_id() == b.cpl_id(); } |
