@@ -1030,26 +1030,26 @@ mod impls {
10301030 // & pointers
10311031
10321032 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
1033- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialEq < & ' b B > for & ' a A where A : PartialEq < B > {
1033+ impl < A : ?Sized , B : ?Sized > PartialEq < & B > for & A where A : PartialEq < B > {
10341034 #[ inline]
1035- fn eq ( & self , other : & & ' b B ) -> bool { PartialEq :: eq ( * self , * other) }
1035+ fn eq ( & self , other : & & B ) -> bool { PartialEq :: eq ( * self , * other) }
10361036 #[ inline]
1037- fn ne ( & self , other : & & ' b B ) -> bool { PartialEq :: ne ( * self , * other) }
1037+ fn ne ( & self , other : & & B ) -> bool { PartialEq :: ne ( * self , * other) }
10381038 }
10391039 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
1040- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialOrd < & ' b B > for & ' a A where A : PartialOrd < B > {
1040+ impl < A : ?Sized , B : ?Sized > PartialOrd < & B > for & A where A : PartialOrd < B > {
10411041 #[ inline]
1042- fn partial_cmp ( & self , other : & & ' b B ) -> Option < Ordering > {
1042+ fn partial_cmp ( & self , other : & & B ) -> Option < Ordering > {
10431043 PartialOrd :: partial_cmp ( * self , * other)
10441044 }
10451045 #[ inline]
1046- fn lt ( & self , other : & & ' b B ) -> bool { PartialOrd :: lt ( * self , * other) }
1046+ fn lt ( & self , other : & & B ) -> bool { PartialOrd :: lt ( * self , * other) }
10471047 #[ inline]
1048- fn le ( & self , other : & & ' b B ) -> bool { PartialOrd :: le ( * self , * other) }
1048+ fn le ( & self , other : & & B ) -> bool { PartialOrd :: le ( * self , * other) }
10491049 #[ inline]
1050- fn ge ( & self , other : & & ' b B ) -> bool { PartialOrd :: ge ( * self , * other) }
1050+ fn ge ( & self , other : & & B ) -> bool { PartialOrd :: ge ( * self , * other) }
10511051 #[ inline]
1052- fn gt ( & self , other : & & ' b B ) -> bool { PartialOrd :: gt ( * self , * other) }
1052+ fn gt ( & self , other : & & B ) -> bool { PartialOrd :: gt ( * self , * other) }
10531053 }
10541054 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
10551055 impl < A : ?Sized > Ord for & A where A : Ord {
@@ -1062,26 +1062,26 @@ mod impls {
10621062 // &mut pointers
10631063
10641064 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
1065- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialEq < & ' b mut B > for & ' a mut A where A : PartialEq < B > {
1065+ impl < A : ?Sized , B : ?Sized > PartialEq < & mut B > for & mut A where A : PartialEq < B > {
10661066 #[ inline]
1067- fn eq ( & self , other : & & ' b mut B ) -> bool { PartialEq :: eq ( * self , * other) }
1067+ fn eq ( & self , other : & & mut B ) -> bool { PartialEq :: eq ( * self , * other) }
10681068 #[ inline]
1069- fn ne ( & self , other : & & ' b mut B ) -> bool { PartialEq :: ne ( * self , * other) }
1069+ fn ne ( & self , other : & & mut B ) -> bool { PartialEq :: ne ( * self , * other) }
10701070 }
10711071 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
1072- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialOrd < & ' b mut B > for & ' a mut A where A : PartialOrd < B > {
1072+ impl < A : ?Sized , B : ?Sized > PartialOrd < & mut B > for & mut A where A : PartialOrd < B > {
10731073 #[ inline]
1074- fn partial_cmp ( & self , other : & & ' b mut B ) -> Option < Ordering > {
1074+ fn partial_cmp ( & self , other : & & mut B ) -> Option < Ordering > {
10751075 PartialOrd :: partial_cmp ( * self , * other)
10761076 }
10771077 #[ inline]
1078- fn lt ( & self , other : & & ' b mut B ) -> bool { PartialOrd :: lt ( * self , * other) }
1078+ fn lt ( & self , other : & & mut B ) -> bool { PartialOrd :: lt ( * self , * other) }
10791079 #[ inline]
1080- fn le ( & self , other : & & ' b mut B ) -> bool { PartialOrd :: le ( * self , * other) }
1080+ fn le ( & self , other : & & mut B ) -> bool { PartialOrd :: le ( * self , * other) }
10811081 #[ inline]
1082- fn ge ( & self , other : & & ' b mut B ) -> bool { PartialOrd :: ge ( * self , * other) }
1082+ fn ge ( & self , other : & & mut B ) -> bool { PartialOrd :: ge ( * self , * other) }
10831083 #[ inline]
1084- fn gt ( & self , other : & & ' b mut B ) -> bool { PartialOrd :: gt ( * self , * other) }
1084+ fn gt ( & self , other : & & mut B ) -> bool { PartialOrd :: gt ( * self , * other) }
10851085 }
10861086 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
10871087 impl < A : ?Sized > Ord for & mut A where A : Ord {
@@ -1092,18 +1092,18 @@ mod impls {
10921092 impl < A : ?Sized > Eq for & mut A where A : Eq { }
10931093
10941094 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
1095- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialEq < & ' b mut B > for & ' a A where A : PartialEq < B > {
1095+ impl < A : ?Sized , B : ?Sized > PartialEq < & mut B > for & A where A : PartialEq < B > {
10961096 #[ inline]
1097- fn eq ( & self , other : & & ' b mut B ) -> bool { PartialEq :: eq ( * self , * other) }
1097+ fn eq ( & self , other : & & mut B ) -> bool { PartialEq :: eq ( * self , * other) }
10981098 #[ inline]
1099- fn ne ( & self , other : & & ' b mut B ) -> bool { PartialEq :: ne ( * self , * other) }
1099+ fn ne ( & self , other : & & mut B ) -> bool { PartialEq :: ne ( * self , * other) }
11001100 }
11011101
11021102 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
1103- impl < ' a , ' b , A : ?Sized , B : ?Sized > PartialEq < & ' b B > for & ' a mut A where A : PartialEq < B > {
1103+ impl < A : ?Sized , B : ?Sized > PartialEq < & B > for & mut A where A : PartialEq < B > {
11041104 #[ inline]
1105- fn eq ( & self , other : & & ' b B ) -> bool { PartialEq :: eq ( * self , * other) }
1105+ fn eq ( & self , other : & & B ) -> bool { PartialEq :: eq ( * self , * other) }
11061106 #[ inline]
1107- fn ne ( & self , other : & & ' b B ) -> bool { PartialEq :: ne ( * self , * other) }
1107+ fn ne ( & self , other : & & B ) -> bool { PartialEq :: ne ( * self , * other) }
11081108 }
11091109}
0 commit comments