From d95eacd3851a20e52202465ec22b4f72a4983dc8 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 11 Jan 2021 00:16:40 +0100 Subject: Replace std::list with std::vector in the API. --- src/encrypted_kdm.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/encrypted_kdm.h') diff --git a/src/encrypted_kdm.h b/src/encrypted_kdm.h index 175b578f..342bedca 100644 --- a/src/encrypted_kdm.h +++ b/src/encrypted_kdm.h @@ -84,7 +84,7 @@ public: * Note that the returned `keys' contain more than just the asset decryption * keys (also key id, CPL id etc.) */ - std::list keys () const; + std::vector keys () const; std::string id () const; boost::optional annotation_text () const; @@ -113,8 +113,8 @@ private: Formulation formulation, bool disable_forensic_marking_picture, boost::optional disable_forensic_marking_audio, - std::list > key_ids, - std::list keys + std::vector> key_ids, + std::vector keys ); data::EncryptedKDMData* _data; -- cgit v1.2.3