Skip to content

Commit 4433787

Browse files
committed
---
yaml --- r: 128265 b: refs/heads/snap-stage3 c: 4e1024f h: refs/heads/master i: 128263: dd6d38c v: v3
1 parent e4e8588 commit 4433787

File tree

3 files changed

+75
-1
lines changed

3 files changed

+75
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: cb9c1e0e702f4a1a5dfc909b15b74e8556013c06
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: a4b354ca0258b4914b6e6b64b0143a8aec861fa0
4+
refs/heads/snap-stage3: 4e1024f8d3721dccfac436abf99da9bf0febdc7f
55
refs/heads/try: 73b8f60b60d8a2a7ca5a7d49d59771350b867951
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/libcollections/ringbuf.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,7 @@ pub struct MutItems<'a, T> {
362362

363363
impl<'a, T> Iterator<&'a mut T> for MutItems<'a, T> {
364364
#[inline]
365+
#[allow(deprecated)] // mut_shift_ref
365366
fn next(&mut self) -> Option<&'a mut T> {
366367
if self.nelts == 0 {
367368
return None;
@@ -384,6 +385,7 @@ impl<'a, T> Iterator<&'a mut T> for MutItems<'a, T> {
384385

385386
impl<'a, T> DoubleEndedIterator<&'a mut T> for MutItems<'a, T> {
386387
#[inline]
388+
#[allow(deprecated)] // mut_shift_ref
387389
fn next_back(&mut self) -> Option<&'a mut T> {
388390
if self.nelts == 0 {
389391
return None;

0 commit comments

Comments
 (0)