Skip to content

Commit 17917a8

Browse files
committed
---
yaml --- r: 192110 b: refs/heads/snap-stage3 c: 5f57fd5 h: refs/heads/master v: v3
1 parent 94ba2dc commit 17917a8

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: 809a554fca2d0ebc2ba50077016fe282a4064752
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 123b5c124e12ba08bd351c414753902aae9eb045
4+
refs/heads/snap-stage3: 5f57fd591d890cbf9cfc94123071c1a30d809b9e
55
refs/heads/try: ce76bff75603a754d092456285ff455eb871633d
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/src/libstd/sync/mpsc/spsc_queue.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ struct Node<T> {
5757
/// but it can be safely shared in an Arc if it is guaranteed that there
5858
/// is only one popper and one pusher touching the queue at any one point in
5959
/// time.
60-
pub struct Queue<T> {
60+
pub struct Queue<T: Send> {
6161
// consumer fields
6262
tail: UnsafeCell<*mut Node<T>>, // where to pop from
6363
tail_prev: AtomicPtr<Node<T>>, // where to pop from

0 commit comments

Comments
 (0)