@@ -19,7 +19,7 @@ macro_rules! sh_impl_signed {
1919 impl Shl <$f> for Wrapping <$t> {
2020 type Output = Wrapping <$t>;
2121
22- #[ inline( always ) ]
22+ #[ inline]
2323 fn shl( self , other: $f) -> Wrapping <$t> {
2424 if other < 0 {
2525 Wrapping ( self . 0 . wrapping_shr( ( -other & self :: shift_max:: $t as $f) as u32 ) )
@@ -31,7 +31,7 @@ macro_rules! sh_impl_signed {
3131
3232 #[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
3333 impl ShlAssign <$f> for Wrapping <$t> {
34- #[ inline( always ) ]
34+ #[ inline]
3535 fn shl_assign( & mut self , other: $f) {
3636 * self = * self << other;
3737 }
@@ -41,7 +41,7 @@ macro_rules! sh_impl_signed {
4141 impl Shr <$f> for Wrapping <$t> {
4242 type Output = Wrapping <$t>;
4343
44- #[ inline( always ) ]
44+ #[ inline]
4545 fn shr( self , other: $f) -> Wrapping <$t> {
4646 if other < 0 {
4747 Wrapping ( self . 0 . wrapping_shl( ( -other & self :: shift_max:: $t as $f) as u32 ) )
@@ -53,7 +53,7 @@ macro_rules! sh_impl_signed {
5353
5454 #[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
5555 impl ShrAssign <$f> for Wrapping <$t> {
56- #[ inline( always ) ]
56+ #[ inline]
5757 fn shr_assign( & mut self , other: $f) {
5858 * self = * self >> other;
5959 }
@@ -67,15 +67,15 @@ macro_rules! sh_impl_unsigned {
6767 impl Shl <$f> for Wrapping <$t> {
6868 type Output = Wrapping <$t>;
6969
70- #[ inline( always ) ]
70+ #[ inline]
7171 fn shl( self , other: $f) -> Wrapping <$t> {
7272 Wrapping ( self . 0 . wrapping_shl( ( other & self :: shift_max:: $t as $f) as u32 ) )
7373 }
7474 }
7575
7676 #[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
7777 impl ShlAssign <$f> for Wrapping <$t> {
78- #[ inline( always ) ]
78+ #[ inline]
7979 fn shl_assign( & mut self , other: $f) {
8080 * self = * self << other;
8181 }
@@ -85,15 +85,15 @@ macro_rules! sh_impl_unsigned {
8585 impl Shr <$f> for Wrapping <$t> {
8686 type Output = Wrapping <$t>;
8787
88- #[ inline( always ) ]
88+ #[ inline]
8989 fn shr( self , other: $f) -> Wrapping <$t> {
9090 Wrapping ( self . 0 . wrapping_shr( ( other & self :: shift_max:: $t as $f) as u32 ) )
9191 }
9292 }
9393
9494 #[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
9595 impl ShrAssign <$f> for Wrapping <$t> {
96- #[ inline( always ) ]
96+ #[ inline]
9797 fn shr_assign( & mut self , other: $f) {
9898 * self = * self >> other;
9999 }
@@ -127,7 +127,7 @@ macro_rules! wrapping_impl {
127127 impl Add for Wrapping <$t> {
128128 type Output = Wrapping <$t>;
129129
130- #[ inline( always ) ]
130+ #[ inline]
131131 fn add( self , other: Wrapping <$t>) -> Wrapping <$t> {
132132 Wrapping ( self . 0 . wrapping_add( other. 0 ) )
133133 }
@@ -137,7 +137,7 @@ macro_rules! wrapping_impl {
137137
138138 #[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
139139 impl AddAssign for Wrapping <$t> {
140- #[ inline( always ) ]
140+ #[ inline]
141141 fn add_assign( & mut self , other: Wrapping <$t>) {
142142 * self = * self + other;
143143 }
@@ -147,7 +147,7 @@ macro_rules! wrapping_impl {
147147 impl Sub for Wrapping <$t> {
148148 type Output = Wrapping <$t>;
149149
150- #[ inline( always ) ]
150+ #[ inline]
151151 fn sub( self , other: Wrapping <$t>) -> Wrapping <$t> {
152152 Wrapping ( self . 0 . wrapping_sub( other. 0 ) )
153153 }
@@ -157,7 +157,7 @@ macro_rules! wrapping_impl {
157157
158158 #[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
159159 impl SubAssign for Wrapping <$t> {
160- #[ inline( always ) ]
160+ #[ inline]
161161 fn sub_assign( & mut self , other: Wrapping <$t>) {
162162 * self = * self - other;
163163 }
@@ -167,7 +167,7 @@ macro_rules! wrapping_impl {
167167 impl Mul for Wrapping <$t> {
168168 type Output = Wrapping <$t>;
169169
170- #[ inline( always ) ]
170+ #[ inline]
171171 fn mul( self , other: Wrapping <$t>) -> Wrapping <$t> {
172172 Wrapping ( self . 0 . wrapping_mul( other. 0 ) )
173173 }
@@ -177,7 +177,7 @@ macro_rules! wrapping_impl {
177177
178178 #[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
179179 impl MulAssign for Wrapping <$t> {
180- #[ inline( always ) ]
180+ #[ inline]
181181 fn mul_assign( & mut self , other: Wrapping <$t>) {
182182 * self = * self * other;
183183 }
@@ -187,7 +187,7 @@ macro_rules! wrapping_impl {
187187 impl Div for Wrapping <$t> {
188188 type Output = Wrapping <$t>;
189189
190- #[ inline( always ) ]
190+ #[ inline]
191191 fn div( self , other: Wrapping <$t>) -> Wrapping <$t> {
192192 Wrapping ( self . 0 . wrapping_div( other. 0 ) )
193193 }
@@ -197,7 +197,7 @@ macro_rules! wrapping_impl {
197197
198198 #[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
199199 impl DivAssign for Wrapping <$t> {
200- #[ inline( always ) ]
200+ #[ inline]
201201 fn div_assign( & mut self , other: Wrapping <$t>) {
202202 * self = * self / other;
203203 }
@@ -207,7 +207,7 @@ macro_rules! wrapping_impl {
207207 impl Rem for Wrapping <$t> {
208208 type Output = Wrapping <$t>;
209209
210- #[ inline( always ) ]
210+ #[ inline]
211211 fn rem( self , other: Wrapping <$t>) -> Wrapping <$t> {
212212 Wrapping ( self . 0 . wrapping_rem( other. 0 ) )
213213 }
@@ -217,7 +217,7 @@ macro_rules! wrapping_impl {
217217
218218 #[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
219219 impl RemAssign for Wrapping <$t> {
220- #[ inline( always ) ]
220+ #[ inline]
221221 fn rem_assign( & mut self , other: Wrapping <$t>) {
222222 * self = * self % other;
223223 }
@@ -227,7 +227,7 @@ macro_rules! wrapping_impl {
227227 impl Not for Wrapping <$t> {
228228 type Output = Wrapping <$t>;
229229
230- #[ inline( always ) ]
230+ #[ inline]
231231 fn not( self ) -> Wrapping <$t> {
232232 Wrapping ( !self . 0 )
233233 }
@@ -239,7 +239,7 @@ macro_rules! wrapping_impl {
239239 impl BitXor for Wrapping <$t> {
240240 type Output = Wrapping <$t>;
241241
242- #[ inline( always ) ]
242+ #[ inline]
243243 fn bitxor( self , other: Wrapping <$t>) -> Wrapping <$t> {
244244 Wrapping ( self . 0 ^ other. 0 )
245245 }
@@ -249,7 +249,7 @@ macro_rules! wrapping_impl {
249249
250250 #[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
251251 impl BitXorAssign for Wrapping <$t> {
252- #[ inline( always ) ]
252+ #[ inline]
253253 fn bitxor_assign( & mut self , other: Wrapping <$t>) {
254254 * self = * self ^ other;
255255 }
@@ -259,7 +259,7 @@ macro_rules! wrapping_impl {
259259 impl BitOr for Wrapping <$t> {
260260 type Output = Wrapping <$t>;
261261
262- #[ inline( always ) ]
262+ #[ inline]
263263 fn bitor( self , other: Wrapping <$t>) -> Wrapping <$t> {
264264 Wrapping ( self . 0 | other. 0 )
265265 }
@@ -269,7 +269,7 @@ macro_rules! wrapping_impl {
269269
270270 #[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
271271 impl BitOrAssign for Wrapping <$t> {
272- #[ inline( always ) ]
272+ #[ inline]
273273 fn bitor_assign( & mut self , other: Wrapping <$t>) {
274274 * self = * self | other;
275275 }
@@ -279,7 +279,7 @@ macro_rules! wrapping_impl {
279279 impl BitAnd for Wrapping <$t> {
280280 type Output = Wrapping <$t>;
281281
282- #[ inline( always ) ]
282+ #[ inline]
283283 fn bitand( self , other: Wrapping <$t>) -> Wrapping <$t> {
284284 Wrapping ( self . 0 & other. 0 )
285285 }
@@ -289,7 +289,7 @@ macro_rules! wrapping_impl {
289289
290290 #[ stable( feature = "op_assign_traits" , since = "1.8.0" ) ]
291291 impl BitAndAssign for Wrapping <$t> {
292- #[ inline( always ) ]
292+ #[ inline]
293293 fn bitand_assign( & mut self , other: Wrapping <$t>) {
294294 * self = * self & other;
295295 }
@@ -298,7 +298,7 @@ macro_rules! wrapping_impl {
298298 #[ stable( feature = "wrapping_neg" , since = "1.10.0" ) ]
299299 impl Neg for Wrapping <$t> {
300300 type Output = Self ;
301- #[ inline( always ) ]
301+ #[ inline]
302302 fn neg( self ) -> Self {
303303 Wrapping ( 0 ) - self
304304 }
0 commit comments