This commit is contained in:
James Cherry 2019-03-26 20:25:12 -07:00
parent 28799b9b09
commit 3ce2e530c2
1 changed files with 4 additions and 2 deletions

View File

@ -575,12 +575,14 @@ protected:
TagIndex tag_capacity_;
Tag **tags_;
TagIndex tag_next_;
Vector<TagIndex> tag_free_indices_;
// Holes in tags_ left by deleting filter tags.
std::vector<TagIndex> tag_free_indices_;
std::mutex tag_lock_;
TagGroupSet *tag_group_set_;
TagGroup **tag_groups_;
TagGroupIndex tag_group_next_;
Vector<TagIndex> tag_group_free_indices_;
// Holes in tag_groups_ left by deleting filter tag groups.
std::vector<TagIndex> tag_group_free_indices_;
// Capacity of tag_groups_.
TagGroupIndex tag_group_capacity_;
std::mutex tag_group_lock_;