comment
This commit is contained in:
parent
28799b9b09
commit
3ce2e530c2
|
|
@ -575,12 +575,14 @@ protected:
|
||||||
TagIndex tag_capacity_;
|
TagIndex tag_capacity_;
|
||||||
Tag **tags_;
|
Tag **tags_;
|
||||||
TagIndex tag_next_;
|
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_;
|
std::mutex tag_lock_;
|
||||||
TagGroupSet *tag_group_set_;
|
TagGroupSet *tag_group_set_;
|
||||||
TagGroup **tag_groups_;
|
TagGroup **tag_groups_;
|
||||||
TagGroupIndex tag_group_next_;
|
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_.
|
// Capacity of tag_groups_.
|
||||||
TagGroupIndex tag_group_capacity_;
|
TagGroupIndex tag_group_capacity_;
|
||||||
std::mutex tag_group_lock_;
|
std::mutex tag_group_lock_;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue