diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-11 00:16:40 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-17 20:13:23 +0100 |
| commit | d95eacd3851a20e52202465ec22b4f72a4983dc8 (patch) | |
| tree | 1dfc1092ae7d2e6b6b7c313ad808415f578d9712 /src/certificate_chain.h | |
| parent | cbee0d077e698541afcea82a95bafcea5245ab89 (diff) | |
Replace std::list with std::vector in the API.
Diffstat (limited to 'src/certificate_chain.h')
| -rw-r--r-- | src/certificate_chain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/certificate_chain.h b/src/certificate_chain.h index 63ef8901..c74bc6e2 100644 --- a/src/certificate_chain.h +++ b/src/certificate_chain.h @@ -92,7 +92,7 @@ public: Certificate root () const; Certificate leaf () const; - typedef std::list<Certificate> List; + typedef std::vector<Certificate> List; List leaf_to_root () const; List root_to_leaf () const; |
