You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
StackVec: Remove confusion between StackVec<'a. T> and StackVec<'a, &'a mut T>
It seems that indeed, in 32ce43c, when
trying to implement IntoIterator I didn't knew what I was doing and
poisoned the code with StackVec<'a, &'a mut T> instead of Stack<'a, T>.
Probably the lifetimes errors lead me astray.
Remove the aberrant type in favor of the correct one.
Signed-off-by: Eddy Petrișor <eddy.petrisor@gmail.com>
0 commit comments