File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -607,24 +607,31 @@ impl<'a, A: Array> IntoIterator for &'a mut SmallVec<A> {
607607// TODO: Remove these and its users.
608608
609609/// Deprecated alias to ease transition from an earlier version.
610+ #[ deprecated]
610611pub type SmallVec1 < T > = SmallVec < [ T ; 1 ] > ;
611612
612613/// Deprecated alias to ease transition from an earlier version.
614+ #[ deprecated]
613615pub type SmallVec2 < T > = SmallVec < [ T ; 2 ] > ;
614616
615617/// Deprecated alias to ease transition from an earlier version.
618+ #[ deprecated]
616619pub type SmallVec4 < T > = SmallVec < [ T ; 4 ] > ;
617620
618621/// Deprecated alias to ease transition from an earlier version.
622+ #[ deprecated]
619623pub type SmallVec8 < T > = SmallVec < [ T ; 8 ] > ;
620624
621625/// Deprecated alias to ease transition from an earlier version.
626+ #[ deprecated]
622627pub type SmallVec16 < T > = SmallVec < [ T ; 16 ] > ;
623628
624629/// Deprecated alias to ease transition from an earlier version.
630+ #[ deprecated]
625631pub type SmallVec24 < T > = SmallVec < [ T ; 24 ] > ;
626632
627633/// Deprecated alias to ease transition from an earlier version.
634+ #[ deprecated]
628635pub type SmallVec32 < T > = SmallVec < [ T ; 32 ] > ;
629636
630637
You can’t perform that action at this time.
0 commit comments