summaryrefslogtreecommitdiff
path: root/src/pkl.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-11 00:16:40 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-17 20:13:23 +0100
commitd95eacd3851a20e52202465ec22b4f72a4983dc8 (patch)
tree1dfc1092ae7d2e6b6b7c313ad808415f578d9712 /src/pkl.h
parentcbee0d077e698541afcea82a95bafcea5245ab89 (diff)
Replace std::list with std::vector in the API.
Diffstat (limited to 'src/pkl.h')
-rw-r--r--src/pkl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkl.h b/src/pkl.h
index a27a9a33..0ea87219 100644
--- a/src/pkl.h
+++ b/src/pkl.h
@@ -103,7 +103,7 @@ private:
std::string _issue_date;
std::string _issuer;
std::string _creator;
- std::list<std::shared_ptr<Asset> > _asset_list;
+ std::vector<std::shared_ptr<Asset>> _asset_list;
/** The most recent disk file used to read or write this PKL */
mutable boost::optional<boost::filesystem::path> _file;
};