Prepare for follow-on change

This commit is contained in:
Hanno Braun 2024-12-16 21:14:33 +01:00
parent 9090b9bc60
commit 3754d46fcf

View File

@ -15,7 +15,10 @@ pub struct Shape {
}
impl Shape {
pub fn extend_with<T>(&mut self, _: &mut Store<T>) -> ShapeExtender<(), T> {
pub fn extend_with<'r, T>(
&'r mut self,
_: &'r mut Store<T>,
) -> ShapeExtender<'r, (), T> {
ShapeExtender::new(&mut self.sequence)
}
}