Skip to content

Commit

Permalink
renamed method
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderSaydakov committed Aug 14, 2020
1 parent 6906132 commit 013b0d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tuple/include/theta_update_sketch_base.hpp
Expand Up @@ -87,7 +87,7 @@ struct theta_update_sketch_base {

static inline uint32_t get_capacity(uint8_t lg_cur_size, uint8_t lg_nom_size);
static inline uint32_t get_stride(uint64_t key, uint8_t lg_size);
static void consolidate_empty(Entry* entries, size_t size, size_t num);
static void consolidate_non_empty(Entry* entries, size_t size, size_t num);
};

// builder
Expand Down
2 changes: 1 addition & 1 deletion tuple/include/theta_update_sketch_base_impl.hpp
Expand Up @@ -238,7 +238,7 @@ void theta_update_sketch_base<EN, EK, A>::trim() {
}

template<typename EN, typename EK, typename A>
void theta_update_sketch_base<EN, EK, A>::consolidate_empty(EN* entries, size_t size, size_t num) {
void theta_update_sketch_base<EN, EK, A>::consolidate_non_empty(EN* entries, size_t size, size_t num) {
// find the first empty slot
size_t i = 0;
while (i < size) {
Expand Down

0 comments on commit 013b0d0

Please sign in to comment.