fix compare_pstr_to_string (#2148)

This commit is contained in:
Mark
2023-11-04 19:32:23 -06:00
parent da0018efdf
commit 2dd1f6e880

View File

@@ -68,7 +68,7 @@ pub struct HeapPStrIter<'a> {
stepper: fn(&mut HeapPStrIter<'a>) -> Option<PStrIteratee>,
}
#[derive(Debug)]
#[derive(Debug, Clone, Copy)]
pub struct PStrPrefixCmpResult {
pub focus: usize,
pub offset: usize,
@@ -193,7 +193,7 @@ impl<'a> HeapPStrIter<'a> {
}
}
final_result
Some(result)
}
fn walk_hare_to_cycle_end(&mut self) {