Skip to content

Commit a267cc1

Browse files
committed
---
yaml --- r: 178575 b: refs/heads/try c: 0ab8d5d h: refs/heads/master i: 178573: 0e9ba9a 178571: e9d5fa1 178567: 8bcf872 178559: d440189 v: v3
1 parent c80936e commit a267cc1

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 336c8d2e9c6b276b162bdb3edd43706372e6eddd
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 474b324eda10440d6568ef872a7307d38e7de95b
5-
refs/heads/try: 870aea216bb6f6d6a238c03e186a01bff8820ac0
5+
refs/heads/try: 0ab8d5dadd72b8d44cc79a1756c0a00fec619efa
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/src/libcore/iter.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1824,6 +1824,7 @@ impl<I> RandomAccessIterator for Enumerate<I> where I: RandomAccessIterator {
18241824
}
18251825

18261826
/// An iterator with a `peek()` that returns an optional reference to the next element.
1827+
#[derive(Clone)]
18271828
#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]
18281829
#[stable(feature = "rust1", since = "1.0.0")]
18291830
pub struct Peekable<T, I> where I: Iterator<Item=T> {

branches/try/src/libcore/ops.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -977,7 +977,7 @@ impl fmt::Debug for RangeFull {
977977
}
978978

979979
/// A (half-open) range which is bounded at both ends.
980-
#[derive(Copy, Clone, PartialEq, Eq)]
980+
#[derive(Clone, PartialEq, Eq)]
981981
#[lang="range"]
982982
#[stable(feature = "rust1", since = "1.0.0")]
983983
pub struct Range<Idx> {
@@ -995,7 +995,7 @@ impl<Idx: fmt::Debug> fmt::Debug for Range<Idx> {
995995
}
996996

997997
/// A range which is only bounded below.
998-
#[derive(Copy, Clone, PartialEq, Eq)]
998+
#[derive(Clone, PartialEq, Eq)]
999999
#[lang="range_from"]
10001000
#[stable(feature = "rust1", since = "1.0.0")]
10011001
pub struct RangeFrom<Idx> {

0 commit comments

Comments
 (0)