Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions datasketches/src/hll/array4.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,10 @@ impl Array4 {
let mut new_aux = None;

for (slot, old_actual_val) in old_aux.into_iter() {
debug_assert_ne!(
debug_assert_eq!(
self.get_raw(slot),
AUX_TOKEN,
"AuxMap contains slow without AUX_TOKEN"
"AuxMap contains slot != AUX_TOKEN"
);

let new_shifted = old_actual_val - new_cur_min;
Expand Down