When changing from random_access to sequenced, the tag name was changed but the actual boost index type was not. (#4015)

This commit is contained in:
clemahieu 2022-12-01 19:34:11 +00:00 committed by GitHub
commit 0d1fdbd1bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -92,7 +92,7 @@ private: // In memory store
using ordered_unchecked = boost::multi_index_container<entry,
mi::indexed_by<
mi::random_access<mi::tag<tag_sequenced>>,
mi::sequenced<mi::tag<tag_sequenced>>,
mi::ordered_unique<mi::tag<tag_root>,
mi::member<entry, nano::unchecked_key, &entry::key>>>>;
// clang-format on