Skip to content

Commit 3404047

Browse files
author
Jorge Aparicio
committed
---
yaml --- r: 168726 b: refs/heads/snap-stage3 c: 9d36a2d h: refs/heads/master v: v3
1 parent f91ddf8 commit 3404047

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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: 5e21e17d9638d14af41e27e5ca9a21c8a1bc0170
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 1971a24441dc3ba102bccafdf997dd06f3b5487a
4+
refs/heads/snap-stage3: 9d36a2d59322b236e6a4b47c23a323f87e5d82b2
55
refs/heads/try: 5204084bd2e46af7cc6e0147430e44dd0d657bbb
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/src/libgraphviz/maybe_owned_vec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ impl<'b,T> AsSlice<T> for MaybeOwnedVector<'b,T> {
124124

125125
impl<'a,T> FromIterator<T> for MaybeOwnedVector<'a,T> {
126126
#[allow(deprecated)]
127-
fn from_iter<I:Iterator<T>>(iterator: I) -> MaybeOwnedVector<'a,T> {
127+
fn from_iter<I:Iterator<Item=T>>(iterator: I) -> MaybeOwnedVector<'a,T> {
128128
// If we are building from scratch, might as well build the
129129
// most flexible variant.
130130
Growable(iterator.collect())

0 commit comments

Comments
 (0)