96 , removalTime(removalTime)
126 using CertIndex = boost::multi_index::multi_index_container<
128 boost::multi_index::indexed_by<
129 boost::multi_index::ordered_non_unique<
130 boost::multi_index::member<Entry, const time::system_clock::time_point, &Entry::removalTime>
132 boost::multi_index::ordered_unique<
133 boost::multi_index::const_mem_fun<Entry, const Name&, &Entry::getCertName>
137 using CertIndexByTime = CertIndex::nth_index<0>::type;
138 using CertIndexByName = CertIndex::nth_index<1>::type;
141 CertIndexByTime& m_certsByTime;
142 CertIndexByName& m_certsByName;