Skip to content

Commit a7b1781

Browse files
committed
Minor
1 parent 1fd0441 commit a7b1781

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

include/cuco/detail/bloom_filter/arrow_filter_policy.cuh

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,10 @@ namespace cuco::detail {
8484
template <class Key, template <typename> class XXHash64>
8585
class 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

0 commit comments

Comments
 (0)