This commit is contained in:
Simon Gardling 2025-02-19 21:26:38 -05:00
parent 31f80c0d6f
commit f3742ce674
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D

View File

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