File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
include/cuco/detail/bloom_filter Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -84,11 +84,10 @@ namespace cuco::detail {
8484template <class Key , template <typename > class XXHash64 >
8585class arrow_filter_policy {
8686 public:
87- using hasher = XXHash64<Key>; // /< 64-bit XXHash hasher for Arrow bloom filter policy
88- using word_type = std::uint32_t ; // /< uint32_t for Arrow bloom filter policy
89- using key_type = Key; // /< Hash function input type
90- using hash_value_type = uint64_t ;
91- std::declval<hash_argument_type>())); // /< hash function output type
87+ using hasher = XXHash64<Key>; // /< 64-bit XXHash hasher for Arrow bloom filter policy
88+ using word_type = std::uint32_t ; // /< uint32_t for Arrow bloom filter policy
89+ using key_type = Key; // /< Hash function input type
90+ using hash_value_type = std::uint64_t ; // /< hash function output type
9291
9392 static constexpr uint32_t bits_set_per_block = 8 ; // /< hardcoded bits set per Arrow filter block
9493 static constexpr uint32_t words_per_block = 8 ; // /< hardcoded words per Arrow filter block
You can’t perform that action at this time.
0 commit comments