Skip to content

Commit 0850ec4

Browse files
committed
---
yaml --- r: 102556 b: refs/heads/auto c: f502576 h: refs/heads/master v: v3
1 parent 9877894 commit 0850ec4

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
@@ -13,7 +13,7 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1313
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1414
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1515
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
16-
refs/heads/auto: c594e675eb3db25cd018d58d8fe06ef6ea2c90de
16+
refs/heads/auto: f502576fc7a97825ee90b01c724b63a4bd4c85aa
1717
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1818
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1919
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336

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