diff --git a/src/util/IntrusiveHashSet.hxx b/src/util/IntrusiveHashSet.hxx index 9bb535f80..07fe3ccaf 100644 --- a/src/util/IntrusiveHashSet.hxx +++ b/src/util/IntrusiveHashSet.hxx @@ -12,6 +12,11 @@ struct IntrusiveHashSetOptions { bool constant_time_size = false; + + /** + * @see IntrusiveListOptions::zero_initialized + */ + bool zero_initialized = false; }; template @@ -141,7 +146,7 @@ class IntrusiveHashSet { } }; - using Bucket = IntrusiveList; + using Bucket = IntrusiveList; std::array table; using bucket_iterator = typename Bucket::iterator;