We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e568903 commit ad2b709Copy full SHA for ad2b709
src/include/common/hash_util.h
src/include/primer/count_min_sketch.h
@@ -80,8 +80,8 @@ class CountMinSketch {
80
81
private:
82
/** Dimensions of the count-min sketch matrix */
83
- const uint32_t width_; // Number of buckets for each hash function
84
- const uint32_t depth_; // Number of independent hash functions
+ uint32_t width_; // Number of buckets for each hash function
+ uint32_t depth_; // Number of independent hash functions
85
/** Pre-computed hash functions for each row */
86
std::vector<std::function<size_t(const KeyType &)>> hash_functions_;
87
0 commit comments