Skip to content

Commit bdee336

Browse files
committed
---
yaml --- r: 183008 b: refs/heads/beta c: 0ab8d5d h: refs/heads/master v: v3
1 parent fbab9ae commit bdee336

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
@@ -31,7 +31,7 @@ refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3131
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
3232
refs/heads/batch: b7fd822592a4fb577552d93010c4a4e14f314346
3333
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34-
refs/heads/beta: 870aea216bb6f6d6a238c03e186a01bff8820ac0
34+
refs/heads/beta: 0ab8d5dadd72b8d44cc79a1756c0a00fec619efa
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3636
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
3737
refs/heads/tmp: eb836bf767aa1d8d4cba488a9091cde3c0ab4b2f

branches/beta/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/beta/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)