util/IntrusiveHashSet: add missing typename (to make clang happy)

This commit is contained in:
Max Kellermann
2022-11-13 08:40:51 +01:00
parent a43062c575
commit 85ab89a08b

@@ -96,7 +96,7 @@ struct IntrusiveHashSetMemberHookTraits {
* embedded with a compile-time fixed size in this object. * embedded with a compile-time fixed size in this object.
*/ */
template<typename T, std::size_t table_size, template<typename T, std::size_t table_size,
typename Hash=T::Hash, typename Equal=T::Equal, typename Hash=typename T::Hash, typename Equal=typename T::Equal,
typename HookTraits=IntrusiveHashSetBaseHookTraits<T>, typename HookTraits=IntrusiveHashSetBaseHookTraits<T>,
bool constant_time_size=false> bool constant_time_size=false>
class IntrusiveHashSet { class IntrusiveHashSet {