Skip to content

Commit 474a8b9

Browse files
committed
---
yaml --- r: 107883 b: refs/heads/dist-snap c: f502576 h: refs/heads/master i: 107881: cce6e4c 107879: 423845d v: v3
1 parent 318e8a1 commit 474a8b9

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: f64fdf524a434f0e5cd0bc91d09c144723f3c90d
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/dist-snap: c594e675eb3db25cd018d58d8fe06ef6ea2c90de
9+
refs/heads/dist-snap: f502576fc7a97825ee90b01c724b63a4bd4c85aa
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1212
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/src/librustc/driver/driver.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1213,7 +1213,7 @@ mod test {
12131213
let sessopts = build_session_options(~"rustc", matches, @diagnostic::DefaultEmitter);
12141214
let sess = build_session(sessopts, None, @diagnostic::DefaultEmitter);
12151215
let cfg = build_configuration(sess);
1216-
let mut test_items = cfg.iter().filter(|m| "test" == m.name());
1216+
let mut test_items = cfg.iter().filter(|m| m.name().equiv(&("test")));
12171217
assert!(test_items.next().is_some());
12181218
assert!(test_items.next().is_none());
12191219
}

branches/dist-snap/src/libstd/gc.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ pub struct Gc<T> {
3535
}
3636

3737
#[cfg(test)]
38-
#[no_send]
3938
pub struct Gc<T> {
4039
priv ptr: @T,
4140
priv marker: marker::NoSend,

branches/dist-snap/src/libsyntax/parse/token.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,6 @@ pub fn get_ident_interner() -> @IdentInterner {
549549
/// destroyed. In particular, they must not access string contents. This can
550550
/// be fixed in the future by just leaking all strings until task death
551551
/// somehow.
552-
#[no_send]
553552
#[deriving(Clone, Eq, IterBytes, Ord, TotalEq, TotalOrd)]
554553
pub struct InternedString {
555554
priv string: RcStr,

0 commit comments

Comments
 (0)