Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
ssomers committed Jan 10, 2019
2 parents 8823bf0 + 6ecad33 commit cef2e2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libcore/pin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,11 @@ impl<P: DerefMut> Pin<P> {
/// Assign a new value to the memory behind the pinned reference.
#[stable(feature = "pin", since = "1.33.0")]
#[inline(always)]
pub fn set(mut self: Pin<P>, value: P::Target)
pub fn set(self: &mut Pin<P>, value: P::Target)
where
P::Target: Sized,
{
*self.pointer = value;
*(self.pointer) = value;
}
}

Expand Down

0 comments on commit cef2e2f

Please sign in to comment.