Skip to content

Commit af4a870

Browse files
committed
---
yaml --- r: 192735 b: refs/heads/try c: 018eeb7 h: refs/heads/master i: 192733: c09369b 192731: 8de0756 192727: 683df8e 192719: d61fa1f 192703: c73d1df v: v3
1 parent ce233e1 commit af4a870

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
@@ -2,7 +2,7 @@
22
refs/heads/master: 557d4346a26266d2eb13f6b0adf106b8873b0da1
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: a923278c6278c63468d74772c58dbf788e88f58c
5-
refs/heads/try: 1e71d2e71c037b0008ce9f65a61cf814abd52b68
5+
refs/heads/try: 018eeb76f0e7384f760afa2a97a07110eef05145
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/src/libstd/sync/mutex.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ use fmt;
112112
/// *guard += 1;
113113
/// ```
114114
#[stable(feature = "rust1", since = "1.0.0")]
115-
pub struct Mutex<T> {
115+
pub struct Mutex<T: Send> {
116116
// Note that this static mutex is in a *box*, not inlined into the struct
117117
// itself. Once a native mutex has been used once, its address can never
118118
// change (it can't be moved). This mutex type can be safely moved at any

0 commit comments

Comments
 (0)