Skip to content

Commit ad2b709

Browse files
authored
fix p0 const field and remove deprecated hash utils (#833)
1 parent e568903 commit ad2b709

File tree

2 files changed

+2
-107
lines changed

2 files changed

+2
-107
lines changed

src/include/common/hash_util.h

Lines changed: 0 additions & 105 deletions
This file was deleted.

src/include/primer/count_min_sketch.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ class CountMinSketch {
8080

8181
private:
8282
/** 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
83+
uint32_t width_; // Number of buckets for each hash function
84+
uint32_t depth_; // Number of independent hash functions
8585
/** Pre-computed hash functions for each row */
8686
std::vector<std::function<size_t(const KeyType &)>> hash_functions_;
8787

0 commit comments

Comments
 (0)