Skip to content

Commit 587098a

Browse files
committed
Consistently default operator Rhs/RHS to Self
Operator traits seem to be inconsistent regarding the right hand side generic. Most default Rhs/RHS to Self, but a few omit this. This patch modifies them all to default to Self. This should not have any backwards compatibility issues because we are only enabling code that previously wouldn't compile.
1 parent 637ac17 commit 587098a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libcore/ops/bit.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ bitxor_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
370370
#[stable(feature = "rust1", since = "1.0.0")]
371371
#[rustc_on_unimplemented(message="no implementation for `{Self} << {RHS}`",
372372
label="no implementation for `{Self} << {RHS}`")]
373-
pub trait Shl<RHS> {
373+
pub trait Shl<RHS=Self> {
374374
/// The resulting type after applying the `<<` operator.
375375
#[stable(feature = "rust1", since = "1.0.0")]
376376
type Output;
@@ -472,7 +472,7 @@ shl_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 isize i128 }
472472
#[stable(feature = "rust1", since = "1.0.0")]
473473
#[rustc_on_unimplemented(message="no implementation for `{Self} >> {RHS}`",
474474
label="no implementation for `{Self} >> {RHS}`")]
475-
pub trait Shr<RHS> {
475+
pub trait Shr<RHS=Self> {
476476
/// The resulting type after applying the `>>` operator.
477477
#[stable(feature = "rust1", since = "1.0.0")]
478478
type Output;
@@ -728,7 +728,7 @@ bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
728728
#[stable(feature = "op_assign_traits", since = "1.8.0")]
729729
#[rustc_on_unimplemented(message="no implementation for `{Self} <<= {Rhs}`",
730730
label="no implementation for `{Self} <<= {Rhs}`")]
731-
pub trait ShlAssign<Rhs> {
731+
pub trait ShlAssign<Rhs=Self> {
732732
/// Performs the `<<=` operation.
733733
#[stable(feature = "op_assign_traits", since = "1.8.0")]
734734
fn shl_assign(&mut self, rhs: Rhs);

0 commit comments

Comments
 (0)