File tree 4 files changed +0
-12
lines changed
4 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -1303,7 +1303,6 @@ impl f128 {
1303
1303
/// # }
1304
1304
/// ```
1305
1305
#[ inline]
1306
- #[ rustc_allow_incoherent_impl]
1307
1306
#[ unstable( feature = "f128" , issue = "116909" ) ]
1308
1307
#[ rustc_const_unstable( feature = "const_float_methods" , issue = "130843" ) ]
1309
1308
#[ must_use = "method returns a new number and does not mutate the original value" ]
@@ -1334,7 +1333,6 @@ impl f128 {
1334
1333
/// # }
1335
1334
/// ```
1336
1335
#[ inline]
1337
- #[ rustc_allow_incoherent_impl]
1338
1336
#[ unstable( feature = "f128" , issue = "116909" ) ]
1339
1337
#[ rustc_const_unstable( feature = "const_float_methods" , issue = "130843" ) ]
1340
1338
#[ must_use = "method returns a new number and does not mutate the original value" ]
@@ -1373,7 +1371,6 @@ impl f128 {
1373
1371
/// # }
1374
1372
/// ```
1375
1373
#[ inline]
1376
- #[ rustc_allow_incoherent_impl]
1377
1374
#[ unstable( feature = "f128" , issue = "116909" ) ]
1378
1375
#[ rustc_const_unstable( feature = "const_float_methods" , issue = "130843" ) ]
1379
1376
#[ must_use = "method returns a new number and does not mutate the original value" ]
Original file line number Diff line number Diff line change @@ -1278,7 +1278,6 @@ impl f16 {
1278
1278
/// # }
1279
1279
/// ```
1280
1280
#[ inline]
1281
- #[ rustc_allow_incoherent_impl]
1282
1281
#[ unstable( feature = "f16" , issue = "116909" ) ]
1283
1282
#[ rustc_const_unstable( feature = "const_float_methods" , issue = "130843" ) ]
1284
1283
#[ must_use = "method returns a new number and does not mutate the original value" ]
@@ -1308,7 +1307,6 @@ impl f16 {
1308
1307
/// # }
1309
1308
/// ```
1310
1309
#[ inline]
1311
- #[ rustc_allow_incoherent_impl]
1312
1310
#[ unstable( feature = "f16" , issue = "116909" ) ]
1313
1311
#[ rustc_const_unstable( feature = "const_float_methods" , issue = "130843" ) ]
1314
1312
#[ must_use = "method returns a new number and does not mutate the original value" ]
@@ -1347,7 +1345,6 @@ impl f16 {
1347
1345
/// # }
1348
1346
/// ```
1349
1347
#[ inline]
1350
- #[ rustc_allow_incoherent_impl]
1351
1348
#[ unstable( feature = "f16" , issue = "116909" ) ]
1352
1349
#[ rustc_const_unstable( feature = "const_float_methods" , issue = "130843" ) ]
1353
1350
#[ must_use = "method returns a new number and does not mutate the original value" ]
Original file line number Diff line number Diff line change @@ -1443,7 +1443,6 @@ impl f32 {
1443
1443
///
1444
1444
/// assert!(f32::NAN.abs().is_nan());
1445
1445
/// ```
1446
- #[ rustc_allow_incoherent_impl]
1447
1446
#[ must_use = "method returns a new number and does not mutate the original value" ]
1448
1447
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1449
1448
#[ rustc_const_unstable( feature = "const_float_methods" , issue = "130843" ) ]
@@ -1469,7 +1468,6 @@ impl f32 {
1469
1468
///
1470
1469
/// assert!(f32::NAN.signum().is_nan());
1471
1470
/// ```
1472
- #[ rustc_allow_incoherent_impl]
1473
1471
#[ must_use = "method returns a new number and does not mutate the original value" ]
1474
1472
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1475
1473
#[ rustc_const_unstable( feature = "const_float_methods" , issue = "130843" ) ]
@@ -1504,7 +1502,6 @@ impl f32 {
1504
1502
///
1505
1503
/// assert!(f32::NAN.copysign(1.0).is_nan());
1506
1504
/// ```
1507
- #[ rustc_allow_incoherent_impl]
1508
1505
#[ must_use = "method returns a new number and does not mutate the original value" ]
1509
1506
#[ inline]
1510
1507
#[ stable( feature = "copysign" , since = "1.35.0" ) ]
Original file line number Diff line number Diff line change @@ -1443,7 +1443,6 @@ impl f64 {
1443
1443
///
1444
1444
/// assert!(f64::NAN.abs().is_nan());
1445
1445
/// ```
1446
- #[ rustc_allow_incoherent_impl]
1447
1446
#[ must_use = "method returns a new number and does not mutate the original value" ]
1448
1447
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1449
1448
#[ rustc_const_unstable( feature = "const_float_methods" , issue = "130843" ) ]
@@ -1469,7 +1468,6 @@ impl f64 {
1469
1468
///
1470
1469
/// assert!(f64::NAN.signum().is_nan());
1471
1470
/// ```
1472
- #[ rustc_allow_incoherent_impl]
1473
1471
#[ must_use = "method returns a new number and does not mutate the original value" ]
1474
1472
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1475
1473
#[ rustc_const_unstable( feature = "const_float_methods" , issue = "130843" ) ]
@@ -1504,7 +1502,6 @@ impl f64 {
1504
1502
///
1505
1503
/// assert!(f64::NAN.copysign(1.0).is_nan());
1506
1504
/// ```
1507
- #[ rustc_allow_incoherent_impl]
1508
1505
#[ must_use = "method returns a new number and does not mutate the original value" ]
1509
1506
#[ stable( feature = "copysign" , since = "1.35.0" ) ]
1510
1507
#[ rustc_const_unstable( feature = "const_float_methods" , issue = "130843" ) ]
You can’t perform that action at this time.
0 commit comments