Skip to content

Commit

Permalink
fix merge issue
Browse files Browse the repository at this point in the history
  • Loading branch information
barrust committed Jun 4, 2017
1 parent 936887a commit 5eb9ca0
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/count_min_sketch.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,13 +177,6 @@ int cms_check_mean_min(CountMinSketch *cms, char* key) {
return num_add;
}

int cms_check_mean(CountMinSketch *cms, char* key) {
uint64_t* hashes = cms_get_hashes(cms, key);
int num_add = cms_check_mean_alt(cms, hashes, cms->depth);
free(hashes);
return num_add;
}

uint64_t* cms_get_hashes_alt(CountMinSketch *cms, int num_hashes, char* key) {
return cms->hash_function(num_hashes, key);
}
Expand Down

0 comments on commit 5eb9ca0

Please sign in to comment.