@@ -1449,7 +1449,6 @@ pub trait PartialOrd<Rhs: PointeeSized = Self>: PartialEq<Rhs> + PointeeSized {
1449
1449
/// check `==` and `<` separately to do rather than needing to calculate
1450
1450
/// (then optimize out) the three-way `Ordering` result.
1451
1451
#[ inline]
1452
- #[ must_use]
1453
1452
// Added to improve the behaviour of tuples; not necessarily stabilization-track.
1454
1453
#[ unstable( feature = "partial_ord_chaining_methods" , issue = "none" ) ]
1455
1454
#[ doc( hidden) ]
@@ -1459,7 +1458,6 @@ pub trait PartialOrd<Rhs: PointeeSized = Self>: PartialEq<Rhs> + PointeeSized {
1459
1458
1460
1459
/// Same as `__chaining_lt`, but for `<=` instead of `<`.
1461
1460
#[ inline]
1462
- #[ must_use]
1463
1461
#[ unstable( feature = "partial_ord_chaining_methods" , issue = "none" ) ]
1464
1462
#[ doc( hidden) ]
1465
1463
fn __chaining_le ( & self , other : & Rhs ) -> ControlFlow < bool > {
@@ -1468,7 +1466,6 @@ pub trait PartialOrd<Rhs: PointeeSized = Self>: PartialEq<Rhs> + PointeeSized {
1468
1466
1469
1467
/// Same as `__chaining_lt`, but for `>` instead of `<`.
1470
1468
#[ inline]
1471
- #[ must_use]
1472
1469
#[ unstable( feature = "partial_ord_chaining_methods" , issue = "none" ) ]
1473
1470
#[ doc( hidden) ]
1474
1471
fn __chaining_gt ( & self , other : & Rhs ) -> ControlFlow < bool > {
@@ -1477,7 +1474,6 @@ pub trait PartialOrd<Rhs: PointeeSized = Self>: PartialEq<Rhs> + PointeeSized {
1477
1474
1478
1475
/// Same as `__chaining_lt`, but for `>=` instead of `<`.
1479
1476
#[ inline]
1480
- #[ must_use]
1481
1477
#[ unstable( feature = "partial_ord_chaining_methods" , issue = "none" ) ]
1482
1478
#[ doc( hidden) ]
1483
1479
fn __chaining_ge ( & self , other : & Rhs ) -> ControlFlow < bool > {
0 commit comments