build: bump other crates' MSRV to 1.82

This commit is contained in:
Amaan Qureshi 2025-01-12 04:08:08 -05:00
parent 26d4b19006
commit ac8bb1b777
4 changed files with 56 additions and 56 deletions

View file

@ -253,7 +253,7 @@ impl InlinedProductionMap {
step_index: u32,
) -> Option<impl Iterator<Item = &'a Production> + 'a> {
self.production_map
.get(&(production as *const Production, step_index))
.get(&(std::ptr::from_ref::<Production>(production), step_index))
.map(|production_indices| {
production_indices
.iter()