This commit is contained in:
2025-02-19 21:26:38 -05:00
parent 31f80c0d6f
commit f3742ce674

View File

@@ -37,7 +37,7 @@ impl<T> PosMap<T> {
panic!("index is out of range"); panic!("index is out of range");
} }
unsafe { &self.0.get_unchecked(index) } unsafe { self.0.get_unchecked(index) }
} }
} }